Current Empty app
This commit is contained in:
parent
45e30fe5e2
commit
141c18a1d9
File diff suppressed because it is too large
Load Diff
17
database/apex/f777/application/comments.sql
Normal file
17
database/apex/f777/application/comments.sql
Normal file
@ -0,0 +1,17 @@
|
||||
prompt --application/comments
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION COMMENTS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
83
database/apex/f777/application/create_application.sql
Normal file
83
database/apex/f777/application/create_application.sql
Normal file
@ -0,0 +1,83 @@
|
||||
prompt --application/create_application
|
||||
begin
|
||||
-- Manifest
|
||||
-- FLOW: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp.create_flow(
|
||||
p_id=>wwv_flow.g_flow_id
|
||||
,p_owner=>nvl(wwv_flow_application_install.get_schema,'CORE')
|
||||
,p_name=>nvl(wwv_flow_application_install.get_application_name,'Empty Application')
|
||||
,p_alias=>nvl(wwv_flow_application_install.get_application_alias,'EMPTY')
|
||||
,p_application_group=>wwv_flow_imp.id(13773375410016040)
|
||||
,p_application_group_name=>'DEMO'
|
||||
,p_page_view_logging=>'NO'
|
||||
,p_page_protection_enabled_y_n=>'Y'
|
||||
,p_checksum_salt=>'C62B537B70AC296B7152F7F57C0D56DDDC653FBD3506844F47C8CF0F37321184'
|
||||
,p_bookmark_checksum_function=>'SH512'
|
||||
,p_max_session_length_sec=>86400
|
||||
,p_max_session_idle_sec=>14400
|
||||
,p_session_timeout_warning_sec=>600
|
||||
,p_compatibility_mode=>'19.2'
|
||||
,p_flow_language=>'en-gb'
|
||||
,p_flow_language_derived_from=>'FLOW_PRIMARY_LANGUAGE'
|
||||
,p_date_format=>'DS'
|
||||
,p_timestamp_format=>'DS'
|
||||
,p_timestamp_tz_format=>'DS'
|
||||
,p_direction_right_to_left=>'N'
|
||||
,p_flow_image_prefix => nvl(wwv_flow_application_install.get_image_prefix,'')
|
||||
,p_authentication=>'PLUGIN'
|
||||
,p_authentication_id=>wwv_flow_imp.id(35931601451308667)
|
||||
,p_populate_roles=>'A'
|
||||
,p_application_tab_set=>0
|
||||
,p_logo_type=>'T'
|
||||
,p_logo_text=>'&APP_NAME.'
|
||||
,p_app_builder_icon_name=>'app-icon.svg'
|
||||
,p_public_user=>'APEX_PUBLIC_USER'
|
||||
,p_proxy_server=>nvl(wwv_flow_application_install.get_proxy,'')
|
||||
,p_no_proxy_domains=>nvl(wwv_flow_application_install.get_no_proxy_domains,'')
|
||||
,p_flow_version=>'EMPTY'
|
||||
,p_flow_status=>'AVAILABLE_W_EDIT_LINK'
|
||||
,p_flow_unavailable_text=>'APPLICATION_OFFLINE'
|
||||
,p_exact_substitutions_only=>'Y'
|
||||
,p_browser_cache=>'N'
|
||||
,p_browser_frame=>'D'
|
||||
,p_deep_linking=>'Y'
|
||||
,p_vpd=>'&CORE_SCHEMA..app.create_session'
|
||||
,p_vpd_teardown_code=>'&CORE_SCHEMA..app.exit_session'
|
||||
,p_security_scheme=>'MUST_NOT_BE_PUBLIC_USER'
|
||||
,p_rejoin_existing_sessions=>'N'
|
||||
,p_csv_encoding=>'Y'
|
||||
,p_auto_time_zone=>'N'
|
||||
,p_error_handling_function=>'&CORE_SCHEMA..app.handle_apex_error'
|
||||
,p_tokenize_row_search=>'N'
|
||||
,p_substitution_string_01=>'APP_NAME'
|
||||
,p_substitution_value_01=>'Empty Application'
|
||||
,p_substitution_string_02=>'CORE_SCHEMA'
|
||||
,p_substitution_value_02=>'CORE'
|
||||
,p_substitution_string_07=>'FORMAT_DATE'
|
||||
,p_substitution_value_07=>'YYYY-MM-DD'
|
||||
,p_substitution_string_08=>'FORMAT_DATE_TIME'
|
||||
,p_substitution_value_08=>'YYYY-MM-DD HH24:MI'
|
||||
,p_substitution_string_09=>'FORMAT_DATE_FULL'
|
||||
,p_substitution_value_09=>'YYYY-MM-DD HH24:MI:SS'
|
||||
,p_substitution_string_10=>'FORMAT_TIME'
|
||||
,p_substitution_value_10=>'HH24:MI:SS'
|
||||
,p_last_updated_by=>'DEV'
|
||||
,p_last_upd_yyyymmddhh24miss=>'20220101000000'
|
||||
,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'')
|
||||
,p_files_version=>44
|
||||
,p_ui_type_name => null
|
||||
,p_print_server_type=>'NATIVE'
|
||||
,p_is_pwa=>'N'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
14
database/apex/f777/application/delete_application.sql
Normal file
14
database/apex/f777/application/delete_application.sql
Normal file
@ -0,0 +1,14 @@
|
||||
prompt --application/delete_application
|
||||
begin
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp.remove_flow(wwv_flow.g_flow_id);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
8
database/apex/f777/application/end_environment.sql
Normal file
8
database/apex/f777/application/end_environment.sql
Normal file
@ -0,0 +1,8 @@
|
||||
prompt --application/end_environment
|
||||
begin
|
||||
wwv_flow_imp.import_end(p_auto_install_sup_obj => nvl(wwv_flow_application_install.get_auto_install_sup_obj, false));
|
||||
commit;
|
||||
end;
|
||||
/
|
||||
set verify on feedback on define on
|
||||
prompt ...done
|
||||
46
database/apex/f777/application/pages/page_00000.sql
Normal file
46
database/apex/f777/application/pages/page_00000.sql
Normal file
@ -0,0 +1,46 @@
|
||||
prompt --application/pages/page_00000
|
||||
begin
|
||||
-- Manifest
|
||||
-- PAGE: 00000
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_page.create_page(
|
||||
p_id=>0
|
||||
,p_user_interface_id=>wwv_flow_imp.id(36079120127308917)
|
||||
,p_name=>'Global Page'
|
||||
,p_step_title=>'Global Page'
|
||||
,p_autocomplete_on_off=>'OFF'
|
||||
,p_page_template_options=>'#DEFAULT#'
|
||||
,p_protection_level=>'D'
|
||||
,p_page_component_map=>'14'
|
||||
,p_last_updated_by=>'DEV'
|
||||
,p_last_upd_yyyymmddhh24miss=>'20220101000000'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_da_event(
|
||||
p_id=>wwv_flow_imp.id(38334486193116667)
|
||||
,p_name=>'ON_LOAD'
|
||||
,p_event_sequence=>10
|
||||
,p_bind_type=>'bind'
|
||||
,p_bind_event_type=>'ready'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_da_action(
|
||||
p_id=>wwv_flow_imp.id(38334614603116668)
|
||||
,p_event_id=>wwv_flow_imp.id(38334486193116667)
|
||||
,p_event_result=>'TRUE'
|
||||
,p_action_sequence=>10
|
||||
,p_execute_on_page_init=>'Y'
|
||||
,p_action=>'NATIVE_JAVASCRIPT_CODE'
|
||||
,p_attribute_01=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'apex_page_loaded();',
|
||||
''))
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
75
database/apex/f777/application/pages/page_00100.sql
Normal file
75
database/apex/f777/application/pages/page_00100.sql
Normal file
@ -0,0 +1,75 @@
|
||||
prompt --application/pages/page_00100
|
||||
begin
|
||||
-- Manifest
|
||||
-- PAGE: 00100
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_page.create_page(
|
||||
p_id=>100
|
||||
,p_user_interface_id=>wwv_flow_imp.id(36079120127308917)
|
||||
,p_name=>'&APP_NAME.'
|
||||
,p_alias=>'HOME'
|
||||
,p_step_title=>'&APP_NAME.'
|
||||
,p_autocomplete_on_off=>'OFF'
|
||||
,p_group_id=>wwv_flow_imp.id(36129394652396267)
|
||||
,p_page_css_classes=>'HOME'
|
||||
,p_page_template_options=>'#DEFAULT#'
|
||||
,p_required_role=>wwv_flow_imp.id(36754108834239331)
|
||||
,p_page_component_map=>'11'
|
||||
,p_last_updated_by=>'DEV'
|
||||
,p_last_upd_yyyymmddhh24miss=>'20220101000000'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_plug(
|
||||
p_id=>wwv_flow_imp.id(36173564167167898)
|
||||
,p_plug_name=>'&APP_NAME.'
|
||||
,p_icon_css_classes=>'fa-home'
|
||||
,p_region_template_options=>'#DEFAULT#'
|
||||
,p_plug_template=>wwv_flow_imp.id(19818134006808508)
|
||||
,p_plug_display_sequence=>10
|
||||
,p_include_in_reg_disp_sel_yn=>'Y'
|
||||
,p_plug_query_options=>'DERIVED_REPORT_COLUMNS'
|
||||
,p_attribute_01=>'N'
|
||||
,p_attribute_02=>'HTML'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_da_event(
|
||||
p_id=>wwv_flow_imp.id(27213304477687626)
|
||||
,p_name=>'ON_CHANGE'
|
||||
,p_event_sequence=>10
|
||||
,p_triggering_element_type=>'ITEM'
|
||||
,p_triggering_element=>'P100_TODAY'
|
||||
,p_bind_type=>'bind'
|
||||
,p_bind_event_type=>'change'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_da_action(
|
||||
p_id=>wwv_flow_imp.id(27213406975687627)
|
||||
,p_event_id=>wwv_flow_imp.id(27213304477687626)
|
||||
,p_event_result=>'TRUE'
|
||||
,p_action_sequence=>10
|
||||
,p_execute_on_page_init=>'N'
|
||||
,p_action=>'NATIVE_EXECUTE_PLSQL_CODE'
|
||||
,p_attribute_01=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'app.set_item(''G_TODAY'', :P100_TODAY);',
|
||||
''))
|
||||
,p_attribute_02=>'P100_TODAY'
|
||||
,p_attribute_05=>'PLSQL'
|
||||
,p_wait_for_result=>'Y'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_da_action(
|
||||
p_id=>wwv_flow_imp.id(27213576122687628)
|
||||
,p_event_id=>wwv_flow_imp.id(27213304477687626)
|
||||
,p_event_result=>'TRUE'
|
||||
,p_action_sequence=>20
|
||||
,p_execute_on_page_init=>'N'
|
||||
,p_action=>'NATIVE_SUBMIT_PAGE'
|
||||
,p_attribute_02=>'Y'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
202
database/apex/f777/application/pages/page_09999.sql
Normal file
202
database/apex/f777/application/pages/page_09999.sql
Normal file
@ -0,0 +1,202 @@
|
||||
prompt --application/pages/page_09999
|
||||
begin
|
||||
-- Manifest
|
||||
-- PAGE: 09999
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_page.create_page(
|
||||
p_id=>9999
|
||||
,p_user_interface_id=>wwv_flow_imp.id(36079120127308917)
|
||||
,p_name=>'#fa-coffee'
|
||||
,p_alias=>'LOGIN'
|
||||
,p_step_title=>'Login'
|
||||
,p_warn_on_unsaved_changes=>'N'
|
||||
,p_first_item=>'AUTO_FIRST_ITEM'
|
||||
,p_autocomplete_on_off=>'OFF'
|
||||
,p_group_id=>wwv_flow_imp.id(36400245587811178)
|
||||
,p_step_template=>wwv_flow_imp.id(19774591096808490)
|
||||
,p_page_css_classes=>'LOGOUT'
|
||||
,p_page_template_options=>'#DEFAULT#'
|
||||
,p_page_is_public_y_n=>'Y'
|
||||
,p_page_component_map=>'12'
|
||||
,p_last_updated_by=>'DEV'
|
||||
,p_last_upd_yyyymmddhh24miss=>'20220101000000'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_plug(
|
||||
p_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_plug_name=>'&APP_NAME.'
|
||||
,p_icon_css_classes=>'app-icon'
|
||||
,p_region_template_options=>'#DEFAULT#'
|
||||
,p_plug_template=>wwv_flow_imp.id(19826668221808512)
|
||||
,p_plug_display_sequence=>10
|
||||
,p_plug_query_options=>'DERIVED_REPORT_COLUMNS'
|
||||
,p_attribute_01=>'N'
|
||||
,p_attribute_02=>'TEXT'
|
||||
,p_attribute_03=>'Y'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_plug(
|
||||
p_id=>wwv_flow_imp.id(36087792915309006)
|
||||
,p_plug_name=>'Language Selector'
|
||||
,p_parent_plug_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_region_template_options=>'#DEFAULT#:t-Region--scrollBody'
|
||||
,p_component_template_options=>'#DEFAULT#'
|
||||
,p_escape_on_http_output=>'Y'
|
||||
,p_plug_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_plug_display_sequence=>20
|
||||
,p_plug_display_point=>'SUB_REGIONS'
|
||||
,p_plug_source=>'apex_lang.emit_language_selector_list;'
|
||||
,p_plug_source_type=>'NATIVE_PLSQL'
|
||||
,p_plug_query_num_rows=>15
|
||||
);
|
||||
wwv_flow_imp_page.create_page_button(
|
||||
p_id=>wwv_flow_imp.id(36085918786309003)
|
||||
,p_button_sequence=>40
|
||||
,p_button_plug_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_button_name=>'LOGIN'
|
||||
,p_button_action=>'SUBMIT'
|
||||
,p_button_template_options=>'#DEFAULT#'
|
||||
,p_button_template_id=>wwv_flow_imp.id(19893458126808548)
|
||||
,p_button_is_hot=>'Y'
|
||||
,p_button_image_alt=>'Sign In'
|
||||
,p_button_position=>'NEXT'
|
||||
,p_button_alignment=>'LEFT'
|
||||
,p_grid_new_row=>'Y'
|
||||
,p_grid_new_column=>'Y'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_item(
|
||||
p_id=>wwv_flow_imp.id(36083522403308988)
|
||||
,p_name=>'P9999_USERNAME'
|
||||
,p_item_sequence=>10
|
||||
,p_item_plug_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_prompt=>'Username'
|
||||
,p_placeholder=>'Username'
|
||||
,p_display_as=>'NATIVE_TEXT_FIELD'
|
||||
,p_cSize=>40
|
||||
,p_cMaxlength=>100
|
||||
,p_label_alignment=>'RIGHT'
|
||||
,p_field_template=>wwv_flow_imp.id(19890678158808545)
|
||||
,p_item_icon_css_classes=>'fa-user'
|
||||
,p_item_template_options=>'#DEFAULT#'
|
||||
,p_is_persistent=>'N'
|
||||
,p_encrypt_session_state_yn=>'N'
|
||||
,p_attribute_01=>'N'
|
||||
,p_attribute_02=>'N'
|
||||
,p_attribute_03=>'N'
|
||||
,p_attribute_04=>'TEXT'
|
||||
,p_attribute_05=>'NONE'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_item(
|
||||
p_id=>wwv_flow_imp.id(36083939566308989)
|
||||
,p_name=>'P9999_PASSWORD'
|
||||
,p_item_sequence=>20
|
||||
,p_item_plug_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_prompt=>'Password'
|
||||
,p_placeholder=>'Password'
|
||||
,p_display_as=>'NATIVE_PASSWORD'
|
||||
,p_cSize=>40
|
||||
,p_cMaxlength=>100
|
||||
,p_label_alignment=>'RIGHT'
|
||||
,p_field_template=>wwv_flow_imp.id(19890678158808545)
|
||||
,p_item_icon_css_classes=>'fa-key'
|
||||
,p_item_template_options=>'#DEFAULT#'
|
||||
,p_is_persistent=>'N'
|
||||
,p_encrypt_session_state_yn=>'N'
|
||||
,p_attribute_01=>'Y'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_item(
|
||||
p_id=>wwv_flow_imp.id(36085045963308998)
|
||||
,p_name=>'P9999_REMEMBER'
|
||||
,p_item_sequence=>30
|
||||
,p_item_plug_id=>wwv_flow_imp.id(36083137555308980)
|
||||
,p_prompt=>'Remember username'
|
||||
,p_display_as=>'NATIVE_CHECKBOX'
|
||||
,p_named_lov=>'LOGIN_REMEMBER_USERNAME'
|
||||
,p_lov=>'.'||wwv_flow_imp.id(36084178331308990)||'.'
|
||||
,p_label_alignment=>'RIGHT'
|
||||
,p_display_when=>'apex_authentication.persistent_cookies_enabled'
|
||||
,p_display_when2=>'PLSQL'
|
||||
,p_display_when_type=>'EXPRESSION'
|
||||
,p_field_template=>wwv_flow_imp.id(19890678158808545)
|
||||
,p_item_template_options=>'#DEFAULT#'
|
||||
,p_is_persistent=>'N'
|
||||
,p_lov_display_extra=>'NO'
|
||||
,p_help_text=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'<p>',
|
||||
'If you select this checkbox, the application will save your username in a persistent browser cookie named "LOGIN_USERNAME_COOKIE".',
|
||||
'When you go to the login page the next time,',
|
||||
'the username field will be automatically populated with this value.',
|
||||
'</p>',
|
||||
'<p>',
|
||||
'If you deselect this checkbox and your username is already saved in the cookie,',
|
||||
'the application will overwrite it with an empty value.',
|
||||
'You can also use your browser''s developer tools to completely remove the cookie.',
|
||||
'</p>'))
|
||||
,p_encrypt_session_state_yn=>'N'
|
||||
,p_attribute_01=>'1'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_process(
|
||||
p_id=>wwv_flow_imp.id(36086681667309004)
|
||||
,p_process_sequence=>10
|
||||
,p_process_point=>'AFTER_SUBMIT'
|
||||
,p_process_type=>'NATIVE_PLSQL'
|
||||
,p_process_name=>'Set Username Cookie'
|
||||
,p_process_sql_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'apex_authentication.send_login_username_cookie (',
|
||||
' p_username => lower(:P9999_USERNAME),',
|
||||
' p_consent => :P9999_REMEMBER = ''Y'' );'))
|
||||
,p_process_clob_language=>'PLSQL'
|
||||
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_process(
|
||||
p_id=>wwv_flow_imp.id(36086367949309004)
|
||||
,p_process_sequence=>20
|
||||
,p_process_point=>'AFTER_SUBMIT'
|
||||
,p_process_type=>'NATIVE_PLSQL'
|
||||
,p_process_name=>'Login'
|
||||
,p_process_sql_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'apex_authentication.login(',
|
||||
' p_username => :P9999_USERNAME,',
|
||||
' p_password => :P9999_PASSWORD );'))
|
||||
,p_process_clob_language=>'PLSQL'
|
||||
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_process(
|
||||
p_id=>wwv_flow_imp.id(36087550572309005)
|
||||
,p_process_sequence=>30
|
||||
,p_process_point=>'AFTER_SUBMIT'
|
||||
,p_process_type=>'NATIVE_SESSION_STATE'
|
||||
,p_process_name=>'Clear Page(s) Cache'
|
||||
,p_attribute_01=>'CLEAR_CACHE_CURRENT_PAGE'
|
||||
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_process(
|
||||
p_id=>wwv_flow_imp.id(36087134864309005)
|
||||
,p_process_sequence=>10
|
||||
,p_process_point=>'BEFORE_HEADER'
|
||||
,p_process_type=>'NATIVE_PLSQL'
|
||||
,p_process_name=>'Get Username Cookie'
|
||||
,p_process_sql_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
':P9999_USERNAME := apex_authentication.get_login_username_cookie;',
|
||||
':P9999_REMEMBER := case when :P9999_USERNAME is not null then ''Y'' end;'))
|
||||
,p_process_clob_language=>'PLSQL'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_process(
|
||||
p_id=>wwv_flow_imp.id(36173674723167900)
|
||||
,p_process_sequence=>20
|
||||
,p_process_point=>'BEFORE_HEADER'
|
||||
,p_process_type=>'NATIVE_PLSQL'
|
||||
,p_process_name=>'DELETE_SESSION'
|
||||
,p_process_sql_clob=>'NULL;'
|
||||
,p_process_clob_language=>'PLSQL'
|
||||
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
32
database/apex/f777/application/pages/page_groups.sql
Normal file
32
database/apex/f777/application/pages/page_groups.sql
Normal file
@ -0,0 +1,32 @@
|
||||
prompt --application/pages/page_groups
|
||||
begin
|
||||
-- Manifest
|
||||
-- PAGE GROUPS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_group(
|
||||
p_id=>wwv_flow_imp.id(36082254889308963)
|
||||
,p_group_name=>'ADMIN'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_group(
|
||||
p_id=>wwv_flow_imp.id(36149744690091242)
|
||||
,p_group_name=>'DASHBOARD'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_group(
|
||||
p_id=>wwv_flow_imp.id(36129394652396267)
|
||||
,p_group_name=>'MAIN'
|
||||
);
|
||||
wwv_flow_imp_page.create_page_group(
|
||||
p_id=>wwv_flow_imp.id(36400245587811178)
|
||||
,p_group_name=>'USER'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
84
database/apex/f777/application/plugin_settings.sql
Normal file
84
database/apex/f777/application/plugin_settings.sql
Normal file
@ -0,0 +1,84 @@
|
||||
prompt --application/plugin_settings
|
||||
begin
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(1532941844946499)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_GEOCODED_ADDRESS'
|
||||
,p_attribute_01=>'RELAX_HOUSE_NUMBER'
|
||||
,p_attribute_02=>'N'
|
||||
,p_attribute_03=>'POPUP:ITEM'
|
||||
,p_attribute_04=>'default'
|
||||
,p_attribute_06=>'LIST'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35929029643308656)
|
||||
,p_plugin_type=>'REGION TYPE'
|
||||
,p_plugin=>'NATIVE_DISPLAY_SELECTOR'
|
||||
,p_attribute_01=>'Y'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35929260414308661)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_DATE_PICKER_JET'
|
||||
,p_attribute_01=>'MONTH-PICKER:YEAR-PICKER'
|
||||
,p_attribute_02=>'VISIBLE'
|
||||
,p_attribute_03=>'15'
|
||||
,p_attribute_04=>'FOCUS'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35929504218308662)
|
||||
,p_plugin_type=>'REGION TYPE'
|
||||
,p_plugin=>'NATIVE_IR'
|
||||
,p_attribute_01=>'IG'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35929837532308662)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_RICH_TEXT_EDITOR'
|
||||
,p_attribute_01=>'Y'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35930099145308663)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_COLOR_PICKER'
|
||||
,p_attribute_01=>'FULL'
|
||||
,p_attribute_02=>'POPUP'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35930448088308663)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_STAR_RATING'
|
||||
,p_attribute_01=>'fa-star'
|
||||
,p_attribute_04=>'#VALUE#'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35930735566308664)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_SINGLE_CHECKBOX'
|
||||
,p_attribute_01=>'Y'
|
||||
,p_attribute_02=>'N'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35930991704308664)
|
||||
,p_plugin_type=>'ITEM TYPE'
|
||||
,p_plugin=>'NATIVE_YES_NO'
|
||||
,p_attribute_01=>'Y'
|
||||
,p_attribute_03=>'N'
|
||||
,p_attribute_05=>'SWITCH_CB'
|
||||
);
|
||||
wwv_flow_imp_shared.create_plugin_setting(
|
||||
p_id=>wwv_flow_imp.id(35931372728308664)
|
||||
,p_plugin_type=>'REGION TYPE'
|
||||
,p_plugin=>'NATIVE_CSS_CALENDAR'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
24
database/apex/f777/application/set_environment.sql
Normal file
24
database/apex/f777/application/set_environment.sql
Normal file
@ -0,0 +1,24 @@
|
||||
prompt --application/set_environment
|
||||
set define off verify off feedback off
|
||||
whenever sqlerror exit sql.sqlcode rollback
|
||||
--------------------------------------------------------------------------------
|
||||
--
|
||||
-- Oracle APEX export file
|
||||
--
|
||||
-- You should run the script connected to SQL*Plus as the Oracle user
|
||||
-- APEX_220100 or as the owner (parsing schema) of the application.
|
||||
--
|
||||
-- NOTE: Calls to apex_application_install override the defaults below.
|
||||
--
|
||||
--------------------------------------------------------------------------------
|
||||
begin
|
||||
wwv_flow_imp.import_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,26 @@
|
||||
prompt --application/shared_components/files/app_icon_css
|
||||
begin
|
||||
-- Manifest
|
||||
-- APP STATIC FILES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
|
||||
wwv_flow_imp.g_varchar2_table(1) := '2E6170702D69636F6E207B0A202020206261636B67726F756E642D696D6167653A2075726C286170702D69636F6E2E737667293B0A202020206261636B67726F756E642D7265706561743A206E6F2D7265706561743B0A202020206261636B67726F756E';
|
||||
wwv_flow_imp.g_varchar2_table(2) := '642D73697A653A20636F7665723B0A202020206261636B67726F756E642D706F736974696F6E3A203530253B0A202020206261636B67726F756E642D636F6C6F723A20233831424235463B0A7D';
|
||||
wwv_flow_imp_shared.create_app_static_file(
|
||||
p_id=>wwv_flow_imp.id(36080318072308957)
|
||||
,p_file_name=>'app-icon.css'
|
||||
,p_mime_type=>'text/css'
|
||||
,p_file_charset=>'utf-8'
|
||||
,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,45 @@
|
||||
prompt --application/shared_components/files/app_icon_svg
|
||||
begin
|
||||
-- Manifest
|
||||
-- APP STATIC FILES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
|
||||
wwv_flow_imp.g_varchar2_table(1) := '3C73766720786D6C6E733D22687474703A2F2F7777772E77332E6F72672F323030302F737667222076696577426F783D22302030203634203634222077696474683D22363422206865696768743D223634223E3C726563742077696474683D2231303025';
|
||||
wwv_flow_imp.g_varchar2_table(2) := '22206865696768743D2231303025222066696C6C3D222338314242354622202F3E3C7061746820643D224D33342E3436382034362E343437612E3939352E3939352030203020312D2E3839352E353533682D332E313436612E3939362E39393620302030';
|
||||
wwv_flow_imp.g_varchar2_table(3) := '20312D2E3839352D2E3535336C2D312E31312D322E3232632D2E3033362D2E3037322D2E30352D2E3135332D2E3038322D2E32323768372E3332632D2E3033312E3037342D2E3034362E3135352D2E3038322E3232377A4D33352E393334203433682D37';
|
||||
wwv_flow_imp.g_varchar2_table(4) := '2E38363861332E39383920332E3938392030203020312D2E3036362D2E353633563430683876322E34333861332E39383920332E3938392030203020312D2E3036362E3536327A222066696C6C3D222366636662666122206F7061636974793D222E3422';
|
||||
wwv_flow_imp.g_varchar2_table(5) := '2F3E3C7061746820643D224D33322031366131302E3237312031302E3237312030203020302D31302031302E352031302E3639352031302E36393520302030203020332E35393620382E30363341342E303520342E30352030203020312032372033372E';
|
||||
wwv_flow_imp.g_varchar2_table(6) := '35393876342E383461352E30343320352E303433203020302030202E35323720322E3233366C312E313120322E32323141312E39393120312E3939312030203020302033302E34323820343868332E31343661312E393920312E39392030203020302031';
|
||||
wwv_flow_imp.g_varchar2_table(7) := '2E37392D312E3130356C312E31312D322E32323241352E303420352E30342030203020302033372034322E343337762D342E383461342E30353320342E30353320302030203120312E3430332D332E3033344131302E3639322031302E36393220302030';
|
||||
wwv_flow_imp.g_varchar2_table(8) := '20302034322032362E352031302E3237312031302E3237312030203020302033322031367A6D332E3537382032382E3232376C2D312E313120322E3232612E3939352E3939352030203020312D2E3839352E353533682D332E313436612E3939362E3939';
|
||||
wwv_flow_imp.g_varchar2_table(9) := '362030203020312D2E3839352D2E3535336C2D312E31312D322E3232632D2E3033362D2E3037322D2E30352D2E3135332D2E3038322D2E32323768372E3332632D2E3033322E3037342D2E3034362E3135352D2E3038322E3232377A6D2E3432322D312E';
|
||||
wwv_flow_imp.g_varchar2_table(10) := '373961332E39383920332E3938392030203020312D2E3036362E353633682D372E38363861332E39383920332E3938392030203020312D2E3036362D2E35363356343068387A6D312E3734342D382E36323641352E30353320352E303533203020302030';
|
||||
wwv_flow_imp.g_varchar2_table(11) := '2033362033372E353938563339682D38762D312E34303261352E303520352E30352030203020302D312E3734352D332E37383741392E36393620392E3639362030203020312032332032362E3561392E323720392E323720302030203120392D392E3520';
|
||||
wwv_flow_imp.g_varchar2_table(12) := '392E323720392E3237203020302031203920392E3520392E36393320392E3639332030203020312D332E32353620372E3331317A4D32302032362E35612E352E352030203020302D2E352D2E35682D33612E352E35203020302030203020316833612E35';
|
||||
wwv_flow_imp.g_varchar2_table(13) := '2E35203020302030202E352D2E357A6D32372E352D2E35682D33612E352E35203020302030203020316833612E352E3520302030203020302D317A6D2D32362E30323620372E32366C2D322E34353820312E373231612E352E35203020302030202E3537';
|
||||
wwv_flow_imp.g_varchar2_table(14) := '342E38326C322E3435382D312E373231612E352E352030203020302D2E3537342D2E38327A4D34322E32342031392E3833612E352E35203020302030202E3238362D2E30396C322E3435382D312E373231612E352E352030203020302D2E3537342D2E38';
|
||||
wwv_flow_imp.g_varchar2_table(15) := '326C2D322E34353820312E373231612E352E35203020302030202E3238372E39317A6D2E3238362031332E3433612E352E352030203020302D2E3537342E38326C322E34353820312E3732612E352E35203020302030202E3537342D2E3831397A4D3231';
|
||||
wwv_flow_imp.g_varchar2_table(16) := '2E3437342031392E3734612E352E35203020302030202E3537342D2E38324C31392E35392031372E32612E352E352030203020302D2E3537342E3831397A22206F7061636974793D222E32222F3E3C7061746820643D224D32372E343137203237612E35';
|
||||
wwv_flow_imp.g_varchar2_table(17) := '2E352030203020312D2E352D2E3541352E333120352E3331203020302031203332203231612E352E352030203020312030203120342E33313220342E3331322030203020302D342E30383320342E352E352E352030203020312D2E352E357A22206F7061';
|
||||
wwv_flow_imp.g_varchar2_table(18) := '636974793D222E32222F3E3C7061746820643D224D333220313761392E323720392E32372030203020302D3920392E3520392E36393620392E36393620302030203020332E32353520372E33313141352E303520352E3035203020302031203238203337';
|
||||
wwv_flow_imp.g_varchar2_table(19) := '2E3539385633396838762D312E34303261352E30353320352E30353320302030203120312E3734342D332E37383741392E36393320392E3639332030203020302034312032362E3561392E323720392E32372030203020302D392D392E357A6D30203561';
|
||||
wwv_flow_imp.g_varchar2_table(20) := '342E33313220342E3331322030203020302D342E30383320342E352E352E352030203020312D31203041352E333120352E3331203020302031203332203231612E352E35203020302031203020317A222066696C6C3D222366666622206F706163697479';
|
||||
wwv_flow_imp.g_varchar2_table(21) := '3D222E3935222F3E3C2F7376673E';
|
||||
wwv_flow_imp_shared.create_app_static_file(
|
||||
p_id=>wwv_flow_imp.id(36080052533308955)
|
||||
,p_file_name=>'app-icon.svg'
|
||||
,p_mime_type=>'image/svg+xml'
|
||||
,p_file_charset=>'utf-8'
|
||||
,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/globalization/dyntranslations
|
||||
begin
|
||||
-- Manifest
|
||||
-- DYNAMIC TRANSLATIONS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/globalization/language
|
||||
begin
|
||||
-- Manifest
|
||||
-- LANGUAGE MAP: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/globalization/messages
|
||||
begin
|
||||
-- Manifest
|
||||
-- MESSAGES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/globalization/translations
|
||||
begin
|
||||
-- Manifest
|
||||
-- TRANSLATIONS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/logic/application_items/g_curr_owner
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_CURR_OWNER
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(34983399551165758)
|
||||
,p_name=>'G_CURR_OWNER'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,23 @@
|
||||
prompt --application/shared_components/logic/application_items/g_footer
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_FOOTER
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(34983578522167585)
|
||||
,p_name=>'G_FOOTER'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
,p_escape_on_http_output=>'N'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/logic/application_items/g_today
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_TODAY
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(36096021822354582)
|
||||
,p_name=>'G_TODAY'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'N'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/logic/application_items/g_today_label
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_TODAY_LABEL
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(37528621948788698)
|
||||
,p_name=>'G_TODAY_LABEL'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/logic/application_items/g_tomorrow
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_TOMORROW
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(37528844504790655)
|
||||
,p_name=>'G_TOMORROW'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,23 @@
|
||||
prompt --application/shared_components/logic/application_items/g_version
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_VERSION
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(34983769215170750)
|
||||
,p_name=>'G_VERSION'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
,p_escape_on_http_output=>'N'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/logic/application_items/g_yesterday
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION ITEM: G_YESTERDAY
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_flow_item(
|
||||
p_id=>wwv_flow_imp.id(37529057571791804)
|
||||
,p_name=>'G_YESTERDAY'
|
||||
,p_scope=>'GLOBAL'
|
||||
,p_protection_level=>'I'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/logic/application_settings
|
||||
begin
|
||||
-- Manifest
|
||||
-- APPLICATION SETTINGS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/logic/build_options
|
||||
begin
|
||||
-- Manifest
|
||||
-- BUILD OPTIONS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/navigation/breadcrumbentry
|
||||
begin
|
||||
-- Manifest
|
||||
-- BREADCRUMB ENTRY:
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,20 @@
|
||||
prompt --application/shared_components/navigation/breadcrumbs/breadcrumb
|
||||
begin
|
||||
-- Manifest
|
||||
-- MENU: Breadcrumb
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_menu(
|
||||
p_id=>wwv_flow_imp.id(35931944677308669)
|
||||
,p_name=>'Breadcrumb'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,47 @@
|
||||
prompt --application/shared_components/navigation/lists/desktop_navigation_bar
|
||||
begin
|
||||
-- Manifest
|
||||
-- LIST: Desktop Navigation Bar
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list(
|
||||
p_id=>wwv_flow_imp.id(36078792292308912)
|
||||
,p_name=>'Desktop Navigation Bar'
|
||||
,p_list_status=>'PUBLIC'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list_item(
|
||||
p_id=>wwv_flow_imp.id(36090539567309035)
|
||||
,p_list_item_display_sequence=>10
|
||||
,p_list_item_link_text=>'&APP_USER.'
|
||||
,p_list_item_link_target=>'#'
|
||||
,p_list_item_icon=>'fa-user'
|
||||
,p_list_text_02=>'has-username'
|
||||
,p_list_item_current_type=>'TARGET_PAGE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list_item(
|
||||
p_id=>wwv_flow_imp.id(36091068499309036)
|
||||
,p_list_item_display_sequence=>20
|
||||
,p_list_item_link_text=>'---'
|
||||
,p_list_item_link_target=>'separator'
|
||||
,p_parent_list_item_id=>wwv_flow_imp.id(36090539567309035)
|
||||
,p_list_item_current_type=>'TARGET_PAGE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list_item(
|
||||
p_id=>wwv_flow_imp.id(36091414859309037)
|
||||
,p_list_item_display_sequence=>30
|
||||
,p_list_item_link_text=>'Sign Out'
|
||||
,p_list_item_link_target=>'&LOGOUT_URL.'
|
||||
,p_list_item_icon=>'fa-sign-out'
|
||||
,p_parent_list_item_id=>wwv_flow_imp.id(36090539567309035)
|
||||
,p_list_item_current_type=>'TARGET_PAGE'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,21 @@
|
||||
prompt --application/shared_components/navigation/lists/desktop_navigation_menu
|
||||
begin
|
||||
-- Manifest
|
||||
-- LIST: Desktop Navigation Menu
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list(
|
||||
p_id=>wwv_flow_imp.id(35932441630308673)
|
||||
,p_name=>'Desktop Navigation Menu'
|
||||
,p_list_status=>'PUBLIC'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,43 @@
|
||||
prompt --application/shared_components/navigation/lists/nav_top
|
||||
begin
|
||||
-- Manifest
|
||||
-- LIST: NAV_TOP
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list(
|
||||
p_id=>wwv_flow_imp.id(36349524449195649)
|
||||
,p_name=>'NAV_TOP'
|
||||
,p_list_type=>'SQL_QUERY'
|
||||
,p_list_query=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'SELECT',
|
||||
' lvl,',
|
||||
' label, ',
|
||||
' target, ',
|
||||
' is_current_list_entry,',
|
||||
' image, ',
|
||||
' image_attribute,',
|
||||
' image_alt_attribute,',
|
||||
' attribute01,',
|
||||
' attribute02,',
|
||||
' attribute03,',
|
||||
' attribute04,',
|
||||
' attribute05,',
|
||||
' attribute06,',
|
||||
' attribute07,',
|
||||
' attribute08,',
|
||||
' attribute09,',
|
||||
' attribute10',
|
||||
'FROM nav_top',
|
||||
'ORDER BY page_group, sort_order;'))
|
||||
,p_list_status=>'PUBLIC'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/navigation/navigation_bar
|
||||
begin
|
||||
-- Manifest
|
||||
-- ICON BAR ITEMS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/navigation/tabs/parent
|
||||
begin
|
||||
-- Manifest
|
||||
-- TOP LEVEL TABS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/navigation/tabs/standard
|
||||
begin
|
||||
-- Manifest
|
||||
-- TABS: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,21 @@
|
||||
prompt --application/shared_components/security/app_access_control/is_administrator
|
||||
begin
|
||||
-- Manifest
|
||||
-- ACL ROLE: IS_ADMINISTRATOR
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_acl_role(
|
||||
p_id=>wwv_flow_imp.id(39845875209579104)
|
||||
,p_static_id=>'IS_ADMINISTRATOR'
|
||||
,p_name=>'IS_ADMINISTRATOR'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,25 @@
|
||||
prompt --application/shared_components/security/authentications/apex_accounts
|
||||
begin
|
||||
-- Manifest
|
||||
-- AUTHENTICATION: APEX_ACCOUNTS
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_authentication(
|
||||
p_id=>wwv_flow_imp.id(35931601451308667)
|
||||
,p_name=>'APEX_ACCOUNTS'
|
||||
,p_scheme_type=>'NATIVE_APEX_ACCOUNTS'
|
||||
,p_invalid_session_type=>'LOGIN'
|
||||
,p_cookie_name=>'&WORKSPACE_COOKIE.'
|
||||
,p_use_secure_cookie_yn=>'N'
|
||||
,p_ras_mode=>0
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,23 @@
|
||||
prompt --application/shared_components/security/authentications/open_door_testing_only
|
||||
begin
|
||||
-- Manifest
|
||||
-- AUTHENTICATION: OPEN_DOOR (TESTING ONLY)
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_authentication(
|
||||
p_id=>wwv_flow_imp.id(39555923904602313)
|
||||
,p_name=>'OPEN_DOOR (TESTING ONLY)'
|
||||
,p_scheme_type=>'NATIVE_OPEN_DOOR'
|
||||
,p_use_secure_cookie_yn=>'N'
|
||||
,p_ras_mode=>0
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,24 @@
|
||||
prompt --application/shared_components/security/authorizations/is_active_user
|
||||
begin
|
||||
-- Manifest
|
||||
-- SECURITY SCHEME: IS_ACTIVE_USER
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_security_scheme(
|
||||
p_id=>wwv_flow_imp.id(36754108834239331)
|
||||
,p_name=>'IS_ACTIVE_USER'
|
||||
,p_scheme_type=>'NATIVE_FUNCTION_BODY'
|
||||
,p_attribute_01=>'RETURN app.is_active_user();'
|
||||
,p_error_message=>'ACCESS_DENIED'
|
||||
,p_caching=>'BY_USER_BY_PAGE_VIEW'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,24 @@
|
||||
prompt --application/shared_components/security/authorizations/is_administrator
|
||||
begin
|
||||
-- Manifest
|
||||
-- SECURITY SCHEME: IS_ADMINISTRATOR
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_security_scheme(
|
||||
p_id=>wwv_flow_imp.id(36732436139943725)
|
||||
,p_name=>'IS_ADMINISTRATOR'
|
||||
,p_scheme_type=>'NATIVE_FUNCTION_BODY'
|
||||
,p_attribute_01=>'RETURN a770.is_administrator() = ''Y'';'
|
||||
,p_error_message=>'ACCESS_DENIED'
|
||||
,p_caching=>'BY_USER_BY_PAGE_VIEW'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,24 @@
|
||||
prompt --application/shared_components/security/authorizations/is_developer
|
||||
begin
|
||||
-- Manifest
|
||||
-- SECURITY SCHEME: IS_DEVELOPER
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_security_scheme(
|
||||
p_id=>wwv_flow_imp.id(36465780553243934)
|
||||
,p_name=>'IS_DEVELOPER'
|
||||
,p_scheme_type=>'NATIVE_FUNCTION_BODY'
|
||||
,p_attribute_01=>'RETURN app.is_developer();'
|
||||
,p_error_message=>'ACCESS_DENIED'
|
||||
,p_caching=>'BY_USER_BY_SESSION'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,24 @@
|
||||
prompt --application/shared_components/security/authorizations/nobody
|
||||
begin
|
||||
-- Manifest
|
||||
-- SECURITY SCHEME: NOBODY
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_security_scheme(
|
||||
p_id=>wwv_flow_imp.id(36465601991240822)
|
||||
,p_name=>'NOBODY'
|
||||
,p_scheme_type=>'NATIVE_FUNCTION_BODY'
|
||||
,p_attribute_01=>'RETURN FALSE;'
|
||||
,p_error_message=>'ACCESS_DENIED'
|
||||
,p_caching=>'BY_USER_BY_SESSION'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,28 @@
|
||||
prompt --application/shared_components/user_interface/lovs/login_remember_username
|
||||
begin
|
||||
-- Manifest
|
||||
-- LOGIN_REMEMBER_USERNAME
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_list_of_values(
|
||||
p_id=>wwv_flow_imp.id(36084178331308990)
|
||||
,p_lov_name=>'LOGIN_REMEMBER_USERNAME'
|
||||
,p_lov_query=>'.'||wwv_flow_imp.id(36084178331308990)||'.'
|
||||
,p_location=>'STATIC'
|
||||
);
|
||||
wwv_flow_imp_shared.create_static_lov_data(
|
||||
p_id=>wwv_flow_imp.id(36084630551308993)
|
||||
,p_lov_disp_sequence=>10
|
||||
,p_lov_disp_value=>'Remember username'
|
||||
,p_lov_return_value=>'Y'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,22 @@
|
||||
prompt --application/shared_components/user_interface/shortcuts/delete_confirm_msg
|
||||
begin
|
||||
-- Manifest
|
||||
-- SHORTCUT: DELETE_CONFIRM_MSG
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_shortcut(
|
||||
p_id=>wwv_flow_imp.id(36081983120308961)
|
||||
,p_shortcut_name=>'DELETE_CONFIRM_MSG'
|
||||
,p_shortcut_type=>'TEXT_ESCAPE_JS'
|
||||
,p_shortcut=>'Would you like to perform this delete action?'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/shared_components/user_interface/theme_files
|
||||
begin
|
||||
-- Manifest
|
||||
-- THEME FILES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,79 @@
|
||||
prompt --application/shared_components/user_interface/theme_style
|
||||
begin
|
||||
-- Manifest
|
||||
-- THEME STYLE: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme_style(
|
||||
p_id=>wwv_flow_imp.id(19895279824808549)
|
||||
,p_theme_id=>777
|
||||
,p_name=>'Redwood Light'
|
||||
,p_css_file_urls=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'#IMAGE_PREFIX#libraries/oracle-fonts/oraclesans-apex#MIN#.css?v=#APEX_VERSION#',
|
||||
'#THEME_IMAGES#css/Redwood#MIN#.css?v=#APEX_VERSION#'))
|
||||
,p_is_current=>true
|
||||
,p_is_public=>true
|
||||
,p_is_accessible=>false
|
||||
,p_theme_roller_input_file_urls=>'#THEME_IMAGES#less/theme/Redwood-Theme.less'
|
||||
,p_theme_roller_output_file_url=>'#THEME_IMAGES#css/Redwood-Theme#MIN#.css?v=#APEX_VERSION#'
|
||||
,p_theme_roller_read_only=>true
|
||||
,p_reference_id=>17553692201468615
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme_style(
|
||||
p_id=>wwv_flow_imp.id(19895436694808549)
|
||||
,p_theme_id=>777
|
||||
,p_name=>'Vita'
|
||||
,p_is_current=>false
|
||||
,p_is_public=>true
|
||||
,p_is_accessible=>true
|
||||
,p_theme_roller_input_file_urls=>'#THEME_IMAGES#less/theme/Vita.less'
|
||||
,p_theme_roller_output_file_url=>'#THEME_IMAGES#css/Vita#MIN#.css?v=#APEX_VERSION#'
|
||||
,p_theme_roller_read_only=>true
|
||||
,p_reference_id=>17554033174468615
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme_style(
|
||||
p_id=>wwv_flow_imp.id(19895691764808549)
|
||||
,p_theme_id=>777
|
||||
,p_name=>'Vita - Dark'
|
||||
,p_is_current=>false
|
||||
,p_is_public=>true
|
||||
,p_is_accessible=>false
|
||||
,p_theme_roller_input_file_urls=>'#THEME_IMAGES#less/theme/Vita-Dark.less'
|
||||
,p_theme_roller_output_file_url=>'#THEME_IMAGES#css/Vita-Dark#MIN#.css?v=#APEX_VERSION#'
|
||||
,p_theme_roller_read_only=>true
|
||||
,p_reference_id=>17554478504468615
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme_style(
|
||||
p_id=>wwv_flow_imp.id(19895837867808549)
|
||||
,p_theme_id=>777
|
||||
,p_name=>'Vita - Red'
|
||||
,p_is_current=>false
|
||||
,p_is_public=>true
|
||||
,p_is_accessible=>false
|
||||
,p_theme_roller_input_file_urls=>'#THEME_IMAGES#less/theme/Vita-Red.less'
|
||||
,p_theme_roller_output_file_url=>'#THEME_IMAGES#css/Vita-Red#MIN#.css?v=#APEX_VERSION#'
|
||||
,p_theme_roller_read_only=>true
|
||||
,p_reference_id=>17554848454468615
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme_style(
|
||||
p_id=>wwv_flow_imp.id(19896010636808550)
|
||||
,p_theme_id=>777
|
||||
,p_name=>'Vita - Slate'
|
||||
,p_is_current=>false
|
||||
,p_is_public=>true
|
||||
,p_is_accessible=>false
|
||||
,p_theme_roller_input_file_urls=>'#THEME_IMAGES#less/theme/Vita-Slate.less'
|
||||
,p_theme_roller_output_file_url=>'#THEME_IMAGES#css/Vita-Slate#MIN#.css?v=#APEX_VERSION#'
|
||||
,p_theme_roller_read_only=>true
|
||||
,p_reference_id=>17555201178468616
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,67 @@
|
||||
prompt --application/shared_components/user_interface/themes
|
||||
begin
|
||||
-- Manifest
|
||||
-- THEME: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_theme(
|
||||
p_id=>wwv_flow_imp.id(19896217911808550)
|
||||
,p_theme_id=>777
|
||||
,p_theme_name=>'Universal Theme'
|
||||
,p_theme_internal_name=>'UNIVERSAL_THEME'
|
||||
,p_ui_type_name=>'DESKTOP'
|
||||
,p_navigation_type=>'L'
|
||||
,p_nav_bar_type=>'LIST'
|
||||
,p_reference_id=>9148097615570028
|
||||
,p_is_locked=>false
|
||||
,p_default_page_template=>wwv_flow_imp.id(19789210659808496)
|
||||
,p_default_dialog_template=>wwv_flow_imp.id(19782470775808493)
|
||||
,p_error_template=>wwv_flow_imp.id(19774591096808490)
|
||||
,p_printer_friendly_template=>wwv_flow_imp.id(19786762067808495)
|
||||
,p_breadcrumb_display_point=>'REGION_POSITION_01'
|
||||
,p_sidebar_display_point=>'REGION_POSITION_02'
|
||||
,p_login_template=>wwv_flow_imp.id(19774591096808490)
|
||||
,p_default_button_template=>wwv_flow_imp.id(19893458126808548)
|
||||
,p_default_region_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_chart_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_form_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_reportr_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_tabform_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_wizard_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_menur_template=>wwv_flow_imp.id(19837377456808517)
|
||||
,p_default_listr_template=>wwv_flow_imp.id(19827995985808513)
|
||||
,p_default_irr_template=>wwv_flow_imp.id(19826069766808512)
|
||||
,p_default_report_template=>wwv_flow_imp.id(19858077451808528)
|
||||
,p_default_label_template=>wwv_flow_imp.id(19890920135808545)
|
||||
,p_default_menu_template=>wwv_flow_imp.id(19894861674808548)
|
||||
,p_default_calendar_template=>wwv_flow_imp.id(19894976780808549)
|
||||
,p_default_list_template=>wwv_flow_imp.id(19874494638808536)
|
||||
,p_default_nav_list_template=>wwv_flow_imp.id(19886655000808543)
|
||||
,p_default_top_nav_list_temp=>wwv_flow_imp.id(19880807290808540)
|
||||
,p_default_side_nav_list_temp=>wwv_flow_imp.id(19880807290808540)
|
||||
,p_default_nav_list_position=>'SIDE'
|
||||
,p_default_dialogbtnr_template=>wwv_flow_imp.id(19797937616808500)
|
||||
,p_default_dialogr_template=>wwv_flow_imp.id(19796918320808499)
|
||||
,p_default_option_label=>wwv_flow_imp.id(19890920135808545)
|
||||
,p_default_required_label=>wwv_flow_imp.id(19892204653808546)
|
||||
,p_default_page_transition=>'NONE'
|
||||
,p_default_popup_transition=>'NONE'
|
||||
,p_default_navbar_list_template=>wwv_flow_imp.id(19880485036808539)
|
||||
,p_file_prefix => nvl(wwv_flow_application_install.get_static_theme_file_prefix(777),'#IMAGE_PREFIX#themes/theme_42/21.1/')
|
||||
,p_files_version=>64
|
||||
,p_icon_library=>'FONTAPEX'
|
||||
,p_javascript_file_urls=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'#IMAGE_PREFIX#libraries/apex/#MIN_DIRECTORY#widget.stickyWidget#MIN#.js?v=#APEX_VERSION#',
|
||||
'#THEME_IMAGES#js/theme42#MIN#.js?v=#APEX_VERSION#'))
|
||||
,p_css_file_urls=>'#THEME_IMAGES#css/Core#MIN#.css?v=#APEX_VERSION#'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
43
database/apex/f777/application/user_interfaces.sql
Normal file
43
database/apex/f777/application/user_interfaces.sql
Normal file
@ -0,0 +1,43 @@
|
||||
prompt --application/user_interfaces
|
||||
begin
|
||||
-- Manifest
|
||||
-- USER INTERFACES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
wwv_flow_imp_shared.create_user_interface(
|
||||
p_id=>wwv_flow_imp.id(36079120127308917)
|
||||
,p_ui_type_name=>'DESKTOP'
|
||||
,p_display_name=>'Desktop'
|
||||
,p_display_seq=>10
|
||||
,p_use_auto_detect=>false
|
||||
,p_is_default=>true
|
||||
,p_theme_id=>777
|
||||
,p_home_url=>'f?p=&APP_ID.:HOME:&SESSION.'
|
||||
,p_login_url=>'f?p=&APP_ID.:LOGIN:&APP_SESSION.::&DEBUG.:::'
|
||||
,p_theme_style_by_user_pref=>false
|
||||
,p_built_with_love=>false
|
||||
,p_global_page_id=>0
|
||||
,p_navigation_list_position=>'TOP'
|
||||
,p_navigation_list_template_id=>wwv_flow_imp.id(19880807290808540)
|
||||
,p_nav_list_template_options=>'#DEFAULT#'
|
||||
,p_css_file_urls=>wwv_flow_string.join(wwv_flow_t_varchar2(
|
||||
'#APP_IMAGES#app-icon.css?version=#APP_VERSION#',
|
||||
'#WORKSPACE_IMAGES#global_fonts.css?version=#APP_VERSION#',
|
||||
'#WORKSPACE_IMAGES#global_menu_top.css?version=#APP_VERSION#',
|
||||
'#WORKSPACE_IMAGES#global.css?version=#APP_VERSION#'))
|
||||
,p_javascript_file_urls=>'#WORKSPACE_IMAGES#global.js?version=#APP_VERSION#'
|
||||
,p_nav_bar_type=>'LIST'
|
||||
,p_nav_bar_list_id=>wwv_flow_imp.id(36349524449195649)
|
||||
,p_nav_bar_list_template_id=>wwv_flow_imp.id(19880807290808540)
|
||||
,p_nav_bar_template_options=>'#DEFAULT#'
|
||||
);
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
@ -0,0 +1,17 @@
|
||||
prompt --application/user_interfaces/combined_files
|
||||
begin
|
||||
-- Manifest
|
||||
-- COMBINED FILES: 777
|
||||
-- Manifest End
|
||||
wwv_flow_imp.component_begin (
|
||||
p_version_yyyy_mm_dd=>'2022.04.12'
|
||||
,p_release=>'22.1.2'
|
||||
,p_default_workspace_id=>9014660246496943
|
||||
,p_default_application_id=>777
|
||||
,p_default_id_offset=>26909373241738856
|
||||
,p_default_owner=>'CORE'
|
||||
);
|
||||
null;
|
||||
wwv_flow_imp.component_end;
|
||||
end;
|
||||
/
|
||||
18
database/apex/f777/embedded_code/pages/p00000.js
Normal file
18
database/apex/f777/embedded_code/pages/p00000.js
Normal file
@ -0,0 +1,18 @@
|
||||
// --------------------------------------------------------------------------------
|
||||
//
|
||||
// Oracle APEX source export file
|
||||
//
|
||||
// The contents of this file are intended for review and analysis purposes only.
|
||||
// Developers must use the Application Builder to make modifications to an
|
||||
// application. Changes to this file will not be reflected in the application.
|
||||
//
|
||||
// --------------------------------------------------------------------------------
|
||||
|
||||
// ----------------------------------------
|
||||
// Page 0: Global Page
|
||||
// Action: NATIVE_JAVASCRIPT_CODE
|
||||
// Code
|
||||
|
||||
apex_page_loaded();
|
||||
|
||||
|
||||
18
database/apex/f777/embedded_code/pages/p00100.sql
Normal file
18
database/apex/f777/embedded_code/pages/p00100.sql
Normal file
@ -0,0 +1,18 @@
|
||||
-- --------------------------------------------------------------------------------
|
||||
--
|
||||
-- Oracle APEX source export file
|
||||
--
|
||||
-- The contents of this file are intended for review and analysis purposes only.
|
||||
-- Developers must use the Application Builder to make modifications to an
|
||||
-- application. Changes to this file will not be reflected in the application.
|
||||
--
|
||||
-- --------------------------------------------------------------------------------
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 100: &APP_NAME.
|
||||
-- Action: NATIVE_EXECUTE_PLSQL_CODE
|
||||
-- PL/SQL Code
|
||||
|
||||
app.set_item('G_TODAY', :P100_TODAY);
|
||||
|
||||
|
||||
50
database/apex/f777/embedded_code/pages/p09999.sql
Normal file
50
database/apex/f777/embedded_code/pages/p09999.sql
Normal file
@ -0,0 +1,50 @@
|
||||
-- --------------------------------------------------------------------------------
|
||||
--
|
||||
-- Oracle APEX source export file
|
||||
--
|
||||
-- The contents of this file are intended for review and analysis purposes only.
|
||||
-- Developers must use the Application Builder to make modifications to an
|
||||
-- application. Changes to this file will not be reflected in the application.
|
||||
--
|
||||
-- --------------------------------------------------------------------------------
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 9999: #fa-coffee
|
||||
-- Region: Language Selector
|
||||
-- PL/SQL Code
|
||||
|
||||
apex_lang.emit_language_selector_list;
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 9999: #fa-coffee
|
||||
-- Process: Login
|
||||
-- PL/SQL Code
|
||||
|
||||
apex_authentication.login(
|
||||
p_username => :P9999_USERNAME,
|
||||
p_password => :P9999_PASSWORD );
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 9999: #fa-coffee
|
||||
-- Process: Set Username Cookie
|
||||
-- PL/SQL Code
|
||||
|
||||
apex_authentication.send_login_username_cookie (
|
||||
p_username => lower(:P9999_USERNAME),
|
||||
p_consent => :P9999_REMEMBER = 'Y' );
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 9999: #fa-coffee
|
||||
-- Process: Get Username Cookie
|
||||
-- PL/SQL Code
|
||||
|
||||
:P9999_USERNAME := apex_authentication.get_login_username_cookie;
|
||||
:P9999_REMEMBER := case when :P9999_USERNAME is not null then 'Y' end;
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Page 9999: #fa-coffee
|
||||
-- Process: DELETE_SESSION
|
||||
-- PL/SQL Code
|
||||
|
||||
NULL;
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
-- --------------------------------------------------------------------------------
|
||||
--
|
||||
-- Oracle APEX source export file
|
||||
--
|
||||
-- The contents of this file are intended for review and analysis purposes only.
|
||||
-- Developers must use the Application Builder to make modifications to an
|
||||
-- application. Changes to this file will not be reflected in the application.
|
||||
--
|
||||
-- --------------------------------------------------------------------------------
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Shared Component
|
||||
-- Authorization: IS_ACTIVE_USER
|
||||
-- PL/SQL Function Body
|
||||
|
||||
RETURN app.is_active_user();
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Shared Component
|
||||
-- Authorization: IS_ADMINISTRATOR
|
||||
-- PL/SQL Function Body
|
||||
|
||||
RETURN a770.is_administrator() = 'Y';
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Shared Component
|
||||
-- Authorization: IS_DEVELOPER
|
||||
-- PL/SQL Function Body
|
||||
|
||||
RETURN app.is_developer();
|
||||
|
||||
-- ----------------------------------------
|
||||
-- Shared Component
|
||||
-- Authorization: NOBODY
|
||||
-- PL/SQL Function Body
|
||||
|
||||
RETURN FALSE;
|
||||
|
||||
116
database/apex/f777/install.sql
Normal file
116
database/apex/f777/install.sql
Normal file
@ -0,0 +1,116 @@
|
||||
prompt --install
|
||||
@@application/set_environment.sql
|
||||
@@application/delete_application.sql
|
||||
@@application/create_application.sql
|
||||
@@application/shared_components/navigation/lists/desktop_navigation_menu.sql
|
||||
@@application/shared_components/navigation/lists/desktop_navigation_bar.sql
|
||||
@@application/shared_components/navigation/lists/nav_top.sql
|
||||
@@application/shared_components/files/app_icon_svg.sql
|
||||
@@application/shared_components/files/app_icon_css.sql
|
||||
@@application/plugin_settings.sql
|
||||
@@application/shared_components/security/authorizations/nobody.sql
|
||||
@@application/shared_components/security/authorizations/is_developer.sql
|
||||
@@application/shared_components/security/authorizations/is_administrator.sql
|
||||
@@application/shared_components/security/authorizations/is_active_user.sql
|
||||
@@application/shared_components/security/app_access_control/is_administrator.sql
|
||||
@@application/shared_components/navigation/navigation_bar.sql
|
||||
@@application/shared_components/logic/application_items/g_curr_owner.sql
|
||||
@@application/shared_components/logic/application_items/g_footer.sql
|
||||
@@application/shared_components/logic/application_items/g_today.sql
|
||||
@@application/shared_components/logic/application_items/g_today_label.sql
|
||||
@@application/shared_components/logic/application_items/g_tomorrow.sql
|
||||
@@application/shared_components/logic/application_items/g_version.sql
|
||||
@@application/shared_components/logic/application_items/g_yesterday.sql
|
||||
@@application/shared_components/logic/application_settings.sql
|
||||
@@application/shared_components/navigation/tabs/standard.sql
|
||||
@@application/shared_components/navigation/tabs/parent.sql
|
||||
@@application/shared_components/user_interface/lovs/login_remember_username.sql
|
||||
@@application/pages/page_groups.sql
|
||||
@@application/comments.sql
|
||||
@@application/shared_components/navigation/breadcrumbs/breadcrumb.sql
|
||||
@@application/shared_components/navigation/breadcrumbentry.sql
|
||||
@@application/shared_components/user_interface/templates/page/left_side_column.sql
|
||||
@@application/shared_components/user_interface/templates/page/left_and_right_side_columns.sql
|
||||
@@application/shared_components/user_interface/templates/page/login.sql
|
||||
@@application/shared_components/user_interface/templates/page/master_detail.sql
|
||||
@@application/shared_components/user_interface/templates/page/minimal_no_navigation.sql
|
||||
@@application/shared_components/user_interface/templates/page/modal_dialog.sql
|
||||
@@application/shared_components/user_interface/templates/page/right_side_column.sql
|
||||
@@application/shared_components/user_interface/templates/page/standard.sql
|
||||
@@application/shared_components/user_interface/templates/page/standard_q.sql
|
||||
@@application/shared_components/user_interface/templates/page/wizard_modal_dialog.sql
|
||||
@@application/shared_components/user_interface/templates/button/icon.sql
|
||||
@@application/shared_components/user_interface/templates/button/text.sql
|
||||
@@application/shared_components/user_interface/templates/button/text_with_icon.sql
|
||||
@@application/shared_components/user_interface/templates/region/alert.sql
|
||||
@@application/shared_components/user_interface/templates/region/blank_with_attributes.sql
|
||||
@@application/shared_components/user_interface/templates/region/blank_with_attributes_no_grid.sql
|
||||
@@application/shared_components/user_interface/templates/region/buttons_container.sql
|
||||
@@application/shared_components/user_interface/templates/region/cards_container.sql
|
||||
@@application/shared_components/user_interface/templates/region/carousel_container.sql
|
||||
@@application/shared_components/user_interface/templates/region/collapsible.sql
|
||||
@@application/shared_components/user_interface/templates/region/content_block.sql
|
||||
@@application/shared_components/user_interface/templates/region/hero.sql
|
||||
@@application/shared_components/user_interface/templates/region/inline_dialog.sql
|
||||
@@application/shared_components/user_interface/templates/region/inline_popup.sql
|
||||
@@application/shared_components/user_interface/templates/region/interactive_report.sql
|
||||
@@application/shared_components/user_interface/templates/region/login.sql
|
||||
@@application/shared_components/user_interface/templates/region/standard.sql
|
||||
@@application/shared_components/user_interface/templates/region/tabs_container.sql
|
||||
@@application/shared_components/user_interface/templates/region/title_bar.sql
|
||||
@@application/shared_components/user_interface/templates/region/wizard_container.sql
|
||||
@@application/shared_components/user_interface/templates/list/badge_list.sql
|
||||
@@application/shared_components/user_interface/templates/list/cards.sql
|
||||
@@application/shared_components/user_interface/templates/list/links_list.sql
|
||||
@@application/shared_components/user_interface/templates/list/media_list.sql
|
||||
@@application/shared_components/user_interface/templates/list/menu_bar.sql
|
||||
@@application/shared_components/user_interface/templates/list/menu_popup.sql
|
||||
@@application/shared_components/user_interface/templates/list/navigation_bar.sql
|
||||
@@application/shared_components/user_interface/templates/list/navigation_bar_q.sql
|
||||
@@application/shared_components/user_interface/templates/list/side_navigation_menu.sql
|
||||
@@application/shared_components/user_interface/templates/list/tabs.sql
|
||||
@@application/shared_components/user_interface/templates/list/top_navigation_mega_menu.sql
|
||||
@@application/shared_components/user_interface/templates/list/top_navigation_menu.sql
|
||||
@@application/shared_components/user_interface/templates/list/top_navigation_tabs.sql
|
||||
@@application/shared_components/user_interface/templates/list/wizard_progress.sql
|
||||
@@application/shared_components/user_interface/templates/report/alerts.sql
|
||||
@@application/shared_components/user_interface/templates/report/badge_list.sql
|
||||
@@application/shared_components/user_interface/templates/report/cards.sql
|
||||
@@application/shared_components/user_interface/templates/report/comments.sql
|
||||
@@application/shared_components/user_interface/templates/report/content_row.sql
|
||||
@@application/shared_components/user_interface/templates/report/contextual_info.sql
|
||||
@@application/shared_components/user_interface/templates/report/media_list.sql
|
||||
@@application/shared_components/user_interface/templates/report/search_results.sql
|
||||
@@application/shared_components/user_interface/templates/report/standard.sql
|
||||
@@application/shared_components/user_interface/templates/report/timeline.sql
|
||||
@@application/shared_components/user_interface/templates/report/value_attribute_pairs_column.sql
|
||||
@@application/shared_components/user_interface/templates/report/value_attribute_pairs_row.sql
|
||||
@@application/shared_components/user_interface/templates/label/hidden.sql
|
||||
@@application/shared_components/user_interface/templates/label/optional.sql
|
||||
@@application/shared_components/user_interface/templates/label/optional_above.sql
|
||||
@@application/shared_components/user_interface/templates/label/optional_floating.sql
|
||||
@@application/shared_components/user_interface/templates/label/required.sql
|
||||
@@application/shared_components/user_interface/templates/label/required_above.sql
|
||||
@@application/shared_components/user_interface/templates/label/required_floating.sql
|
||||
@@application/shared_components/user_interface/templates/breadcrumb/breadcrumb.sql
|
||||
@@application/shared_components/user_interface/templates/popuplov.sql
|
||||
@@application/shared_components/user_interface/templates/calendar/calendar.sql
|
||||
@@application/shared_components/user_interface/themes.sql
|
||||
@@application/shared_components/user_interface/theme_style.sql
|
||||
@@application/shared_components/user_interface/theme_files.sql
|
||||
@@application/shared_components/user_interface/template_opt_groups.sql
|
||||
@@application/shared_components/user_interface/template_options.sql
|
||||
@@application/shared_components/globalization/language.sql
|
||||
@@application/shared_components/globalization/translations.sql
|
||||
@@application/shared_components/logic/build_options.sql
|
||||
@@application/shared_components/globalization/messages.sql
|
||||
@@application/shared_components/globalization/dyntranslations.sql
|
||||
@@application/shared_components/user_interface/shortcuts/delete_confirm_msg.sql
|
||||
@@application/shared_components/security/authentications/apex_accounts.sql
|
||||
@@application/shared_components/security/authentications/open_door_testing_only.sql
|
||||
@@application/user_interfaces.sql
|
||||
@@application/user_interfaces/combined_files.sql
|
||||
@@application/pages/page_00000.sql
|
||||
@@application/pages/page_00100.sql
|
||||
@@application/pages/page_09999.sql
|
||||
@@application/end_environment.sql
|
||||
Loading…
x
Reference in New Issue
Block a user