PluginProbe
Elementor Website Builder – more than just a page builder / 3.20.0-dev3
Elementor Website Builder – more than just a page builder v3.20.0-dev3
4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 All 454 releases
← All changes | core/admin/admin.php +34 -305 4.3.03.20.0-dev3 View file →
@@ -2,20 +2,18 @@
2 2 namespace Elementor\Core\Admin;
3 3
4 4 use Elementor\Api;
5 5 use Elementor\Beta_Testers;
6 +use Elementor\Core\Admin\Menu\Main as MainMenu;
6 7 use Elementor\App\Modules\Onboarding\Module as Onboarding_Module;
7 8 use Elementor\Core\Base\App;
8 9 use Elementor\Core\Upgrade\Manager as Upgrade_Manager;
9 10 use Elementor\Core\Utils\Assets_Config_Provider;
10 11 use Elementor\Core\Utils\Collection;
11 -use Elementor\Modules\FloatingButtons\Module as Floating_Buttons_Module;
12 12 use Elementor\Plugin;
13 13 use Elementor\Settings;
14 14 use Elementor\User;
15 15 use Elementor\Utils;
16 -use Elementor\Core\Utils\Hints;
17 -use Elementor\Core\DocumentTypes\Page;
18 16
19 17 if ( ! defined( 'ABSPATH' ) ) {
20 18 exit; // Exit if accessed directly.
21 19 }
@@ -38,36 +36,8 @@
38 36 return 'admin';
39 37 }
40 38
41 39 /**
42 - * Check if current page is an Elementor admin page.
43 - *
44 - * @param \WP_Screen|null $current_screen Optional. Screen object to check. Defaults to current screen.
45 - *
46 - * @return bool Whether current page is an Elementor admin page.
47 - */
48 - public static function is_elementor_admin_page( $current_screen = null ) {
49 - if ( ! $current_screen ) {
50 - $current_screen = get_current_screen();
51 - }
52 -
53 - if ( ! $current_screen ) {
54 - return false;
55 - }
56 -
57 - $screen_id = $current_screen->id ?? '';
58 - $post_type = $current_screen->post_type ?? '';
59 -
60 - $is_elementor_screen = strpos( $screen_id, 'elementor' ) !== false
61 - || strpos( $screen_id, Floating_Buttons_Module::CPT_FLOATING_BUTTONS ) !== false;
62 -
63 - $is_elementor_post_type = strpos( $post_type, 'elementor' ) !== false
64 - || strpos( $post_type, Floating_Buttons_Module::CPT_FLOATING_BUTTONS ) !== false;
65 -
66 - return $is_elementor_screen || $is_elementor_post_type;
67 - }
68 -
69 - /**
70 40 * @since 2.2.0
71 41 * @access public
72 42 */
73 43 public function maybe_redirect_to_getting_started() {
@@ -179,10 +149,8 @@
179 149 wp_enqueue_script( 'elementor-admin' );
180 150
181 151 wp_set_script_translations( 'elementor-admin', 'elementor' );
182 152
183 - $this->maybe_enqueue_hints();
184 -
185 153 $this->print_config();
186 154 }
187 155
188 156 /**
@@ -195,11 +163,13 @@
195 163 * @since 1.0.0
196 164 * @access public
197 165 */
198 166 public function enqueue_styles() {
167 + $direction_suffix = is_rtl() ? '-rtl' : '';
168 +
199 169 wp_register_style(
200 170 'elementor-admin',
201 - $this->get_css_assets_url( 'admin' ),
171 + $this->get_css_assets_url( 'admin' . $direction_suffix ),
202 172 [
203 173 'elementor-common',
204 174 ],
205 175 ELEMENTOR_VERSION
@@ -242,10 +212,10 @@
242 212 <div id="elementor-switch-mode">
243 213 <input id="elementor-switch-mode-input" type="hidden" name="_elementor_post_mode" value="<?php echo esc_attr( $document->is_built_with_elementor() ); ?>" />
244 214 <button id="elementor-switch-mode-button" type="button" class="button button-primary button-hero">
245 215 <span class="elementor-switch-mode-on">
246 - <i class="eicon-wordpress" aria-hidden="true"></i>
247 - <?php echo esc_html__( 'Edit with WordPress', 'elementor' ); ?>
216 + <i class="eicon-arrow-<?php echo ( is_rtl() ) ? 'right' : 'left'; ?>" aria-hidden="true"></i>
217 + <?php echo esc_html__( 'Back to WordPress Editor', 'elementor' ); ?>
248 218 </span>
249 219 <span class="elementor-switch-mode-off">
250 220 <i class="eicon-elementor-square" aria-hidden="true"></i>
251 221 <?php echo esc_html__( 'Edit with Elementor', 'elementor' ); ?>
@@ -371,15 +341,10 @@
371 341 $settings_link = sprintf( '<a href="%1$s">%2$s</a>', admin_url( 'admin.php?page=' . Settings::PAGE_ID ), esc_html__( 'Settings', 'elementor' ) );
372 342
373 343 array_unshift( $links, $settings_link );
374 344
375 - $go_pro_text = esc_html__( 'Get Elementor Pro', 'elementor' );
376 - if ( Utils::is_sale_time() ) {
377 - $go_pro_text = esc_html__( 'Sale! Upgrade Now', 'elementor' );
378 - }
345 + $links['go_pro'] = sprintf( '<a href="%1$s" target="_blank" class="elementor-plugins-gopro">%2$s</a>', 'https://go.elementor.com/go-pro-wp-plugins/', esc_html__( 'Get Elementor Pro', 'elementor' ) );
379 346
380 - $links['go_pro'] = sprintf( '<a href="%1$s" target="_blank" class="elementor-plugins-gopro">%2$s</a>', 'https://go.elementor.com/go-pro-wp-plugins/', $go_pro_text );
381 -
382 347 return $links;
383 348 }
384 349
385 350 /**
@@ -401,10 +366,10 @@
401 366 */
402 367 public function plugin_row_meta( $plugin_meta, $plugin_file ) {
403 368 if ( ELEMENTOR_PLUGIN_BASE === $plugin_file ) {
404 369 $row_meta = [
405 - 'docs' => '<a href="https://go.elementor.com/docs-admin-plugins/" aria-label="' . esc_attr__( 'View Elementor Documentation', 'elementor' ) . '" target="_blank">' . esc_html__( 'Docs & FAQs', 'elementor' ) . '</a>',
406 - 'ideo' => '<a href="https://go.elementor.com/yt-admin-plugins/" aria-label="' . esc_attr__( 'View Elementor Video Tutorials', 'elementor' ) . '" target="_blank">' . esc_html__( 'Video Tutorials', 'elementor' ) . '</a>',
370 + 'docs' => '<a href="https://go.elementor.com/docs-admin-plugins/" aria-label="' . esc_attr( esc_html__( 'View Elementor Documentation', 'elementor' ) ) . '" target="_blank">' . esc_html__( 'Docs & FAQs', 'elementor' ) . '</a>',
371 + 'ideo' => '<a href="https://go.elementor.com/yt-admin-plugins/" aria-label="' . esc_attr( esc_html__( 'View Elementor Video Tutorials', 'elementor' ) ) . '" target="_blank">' . esc_html__( 'Video Tutorials', 'elementor' ) . '</a>',
407 372 ];
408 373
409 374 $plugin_meta = array_merge( $plugin_meta, $row_meta );
410 375 }
@@ -427,13 +392,8 @@
427 392 * @return string The content that will be printed.
428 393 */
429 394 public function admin_footer_text( $footer_text ) {
430 395 $current_screen = get_current_screen();
431 -
432 - if ( $current_screen && str_ends_with( $current_screen->id, 'elementor-mcp' ) ) {
433 - return $footer_text;
434 - }
435 -
436 396 $is_elementor_screen = ( $current_screen && false !== strpos( $current_screen->id, 'elementor' ) );
437 397
438 398 if ( $is_elementor_screen ) {
439 399 $footer_text = sprintf(
@@ -513,9 +473,9 @@
513 473 ?>
514 474 <div class="e-overview__header">
515 475 <?php if ( $show_versions ) { ?>
516 476 <div class="e-overview__logo">
517 - <div class="e-logo-wrapper"><i class="eicon-elementor-circle"></i></div>
477 + <div class="e-logo-wrapper"><i class="eicon-elementor"></i></div>
518 478 </div>
519 479 <div class="e-overview__versions">
520 480 <span class="e-overview__version"><?php echo esc_html__( 'Elementor', 'elementor' ); ?> v<?php echo ELEMENTOR_VERSION; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
521 481 <?php
@@ -542,9 +502,9 @@
542 502 * Displays the Elementor dashboard widget - recently edited section.
543 503 * Fired by `elementor_dashboard_overview_widget` function.
544 504 *
545 505 * @param array $args
546 - * @param bool $show_heading
506 + * @param bool $show_heading
547 507 *
548 508 * @return void
549 509 * @since 3.12.0
550 510 */
@@ -578,9 +538,9 @@
578 538 /**
579 539 * Displays the Elementor dashboard widget - news and updates section.
580 540 * Fired by `elementor_dashboard_overview_widget` function.
581 541 *
582 - * @param int $limit_feed
542 + * @param int $limit_feed
583 543 * @param bool $show_heading
584 544 *
585 545 * @return void
586 546 * @since 3.12.0
@@ -656,12 +616,21 @@
656 616 ],
657 617 ];
658 618
659 619 $additions_actions = [];
660 - $additions_actions['ai'] = [
661 - 'title' => esc_html__( 'Build Smart with AI', 'elementor' ),
662 - 'link' => 'https://go.elementor.com/overview-widget-ai/',
663 - ];
620 +
621 + if ( User::get_introduction_meta( 'ai_get_started' ) ) {
622 + $additions_actions['ai-library'] = [
623 + 'title' => esc_html__( 'AI Prompts Library', 'elementor' ),
624 + 'link' => 'https://go.elementor.com/overview-ai-prompts-library/',
625 + ];
626 + } else {
627 + $additions_actions['ai'] = [
628 + 'title' => esc_html__( 'Build Smart with AI', 'elementor' ),
629 + 'link' => 'https://go.elementor.com/overview-widget-ai/',
630 + ];
631 + }
632 +
664 633 $additions_actions['go-pro'] = [
665 634 'title' => esc_html__( 'Upgrade', 'elementor' ),
666 635 'link' => 'https://go.elementor.com/go-pro-wp-overview-widget/',
667 636 ];
@@ -723,10 +692,8 @@
723 692 }
724 693
725 694 $post_data = Utils::get_super_global_value( $_GET, 'post_data' ) ?? [];
726 695
727 - $post_data = $this->filter_post_data( $post_data );
728 -
729 696 /**
730 697 * Create new post meta data.
731 698 *
732 699 * Filters the meta data of any new post created.
@@ -750,115 +717,14 @@
750 717 if ( is_wp_error( $document ) ) {
751 718 wp_die( $document ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
752 719 }
753 720
754 - wp_safe_redirect( $document->get_edit_url() );
721 + wp_redirect( $document->get_edit_url() );
755 722
756 723 die;
757 724 }
758 725
759 - public function admin_action_site_settings_redirect() {
760 - check_admin_referer( 'elementor_action_site_settings_redirect' );
761 -
762 - if ( ! current_user_can( 'edit_theme_options' ) ) {
763 - wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'elementor' ) );
764 - }
765 -
766 - $active_tab = filter_input( INPUT_GET, 'active-tab', FILTER_SANITIZE_ENCODED );
767 -
768 - $site_settings_url_config = Page::get_site_settings_url_config( $active_tab );
769 -
770 - if ( empty( $site_settings_url_config['url'] ) ) {
771 - wp_die( esc_html__( 'Unable to create or access Site Settings page.', 'elementor' ) );
772 - }
773 -
774 - wp_safe_redirect( $site_settings_url_config['url'] );
775 -
776 - die;
777 - }
778 -
779 726 /**
780 - * Admin action edit website.
781 - *
782 - * Redirects to the homepage edit URL if it exists and is built with Elementor,
783 - * otherwise redirects to create a new page.
784 - *
785 - * Fired by `admin_action_elementor_edit_website` action.
786 - *
787 - * @since 3.x.x
788 - * @access public
789 - */
790 - public function admin_action_edit_website_redirect() {
791 - check_admin_referer( 'elementor_action_edit_website' );
792 -
793 - if ( ! User::is_current_user_can_edit_post_type( 'page' ) ) {
794 - wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'elementor' ) );
795 - }
796 -
797 - $homepage_id = $this->get_homepage_id();
798 - $edit_url = $this->get_edit_website_url( $homepage_id );
799 -
800 - wp_safe_redirect( $edit_url );
801 -
802 - die;
803 - }
804 -
805 - private function get_homepage_id(): ?int {
806 - if ( get_option( 'show_on_front' ) !== 'page' ) {
807 - return null;
808 - }
809 -
810 - $homepage_id = get_option( 'page_on_front' );
811 -
812 - return $homepage_id ? (int) $homepage_id : null;
813 - }
814 -
815 - private function get_edit_website_url( ?int $homepage_id ): string {
816 - if ( ! $homepage_id ) {
817 - return Plugin::$instance->documents->get_create_new_post_url( 'page' );
818 - }
819 -
820 - $document = Plugin::$instance->documents->get( $homepage_id );
821 -
822 - if ( ! $document || ! $document->is_built_with_elementor() ) {
823 - return Plugin::$instance->documents->get_create_new_post_url( 'page' );
824 - }
825 -
826 - return $document->get_edit_url();
827 - }
828 -
829 - private function get_allowed_fields_for_role() {
830 - $allowed_fields = [
831 - 'post_title',
832 - 'post_content',
833 - 'post_excerpt',
834 - 'post_category',
835 - 'post_type',
836 - 'tags_input',
837 - ];
838 -
839 - if ( current_user_can( 'publish_posts' ) ) {
840 - $allowed_fields[] = 'post_status';
841 - }
842 -
843 - if ( current_user_can( 'edit_others_posts' ) ) {
844 - $allowed_fields[] = 'post_author';
845 - }
846 -
847 - return $allowed_fields;
848 - }
849 -
850 - private function filter_post_data( $post_data ) {
851 - $allowed_fields = $this->get_allowed_fields_for_role();
852 - return array_filter(
853 - $post_data,
854 - function( $key ) use ( $allowed_fields ) {
855 - return in_array( $key, $allowed_fields, true );
856 - },
857 - ARRAY_FILTER_USE_KEY
858 - );
859 - }
860 - /**
861 727 * @since 2.3.0
862 728 * @access public
863 729 */
864 730 public function add_new_template_template() {
@@ -864,31 +730,13 @@
864 730 public function add_new_template_template() {
865 731 Plugin::$instance->common->add_template( ELEMENTOR_PATH . 'includes/admin-templates/new-template.php' );
866 732 }
867 733
868 - public function add_new_floating_elements_template() {
869 - Plugin::$instance->common->add_template( ELEMENTOR_PATH . 'includes/admin-templates/new-floating-elements.php' );
870 - }
871 -
872 - public function enqueue_new_floating_elements_scripts() {
873 - $suffix = Utils::is_script_debug() ? '' : '.min';
874 -
875 - wp_enqueue_script(
876 - 'elementor-floating-elements-modal',
877 - ELEMENTOR_ASSETS_URL . 'js/floating-elements-modal' . $suffix . '.js',
878 - [],
879 - ELEMENTOR_VERSION,
880 - true
881 - );
882 -
883 - wp_set_script_translations( 'elementor-floating-elements-modal', 'elementor' );
884 - }
885 -
886 734 /**
887 735 * @access public
888 736 */
889 737 public function enqueue_new_template_scripts() {
890 - $suffix = Utils::is_script_debug() ? '' : '.min';
738 + $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
891 739
892 740 wp_enqueue_script(
893 741 'elementor-new-template',
894 742 ELEMENTOR_ASSETS_URL . 'js/new-template' . $suffix . '.js',
@@ -911,9 +759,9 @@
911 759 /**
912 760 * @access public
913 761 */
914 762 public function enqueue_beta_tester_scripts() {
915 - $suffix = Utils::is_script_debug() ? '' : '.min';
763 + $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
916 764
917 765 wp_enqueue_script(
918 766 'elementor-beta-tester',
919 767 ELEMENTOR_ASSETS_URL . 'js/beta-tester' . $suffix . '.js',
@@ -924,22 +772,8 @@
924 772
925 773 wp_set_script_translations( 'elementor-beta-tester', 'elementor' );
926 774 }
927 775
928 - public function init_floating_elements() {
929 - $screens = [
930 - 'elementor_library_page_e-floating-buttons' => true,
931 - 'edit-e-floating-buttons' => true,
932 - ];
933 -
934 - if ( ! isset( $screens[ get_current_screen()->id ] ) ) {
935 - return;
936 - }
937 -
938 - add_action( 'admin_head', [ $this, 'add_new_floating_elements_template' ] );
939 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_new_floating_elements_scripts' ] );
940 - }
941 -
942 776 /**
943 777 * @access public
944 778 */
945 779 public function init_new_template() {
@@ -1007,8 +841,12 @@
1007 841
1008 842 $this->add_component( 'feedback', new Feedback() );
1009 843 $this->add_component( 'admin-notices', new Admin_Notices() );
1010 844
845 + if ( Plugin::$instance->experiments->is_feature_active( 'admin_menu_rearrangement' ) ) {
846 + $this->register_menu();
847 + }
848 +
1011 849 add_action( 'admin_init', [ $this, 'maybe_redirect_to_getting_started' ] );
1012 850
1013 851 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
1014 852 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_styles' ] );
@@ -1028,20 +866,15 @@
1028 866 add_action( 'wp_dashboard_setup', [ $this, 'register_dashboard_widgets' ] );
1029 867
1030 868 // Admin Actions
1031 869 add_action( 'admin_action_elementor_new_post', [ $this, 'admin_action_new_post' ] );
1032 - add_action( 'admin_action_elementor_site_settings_redirect', [ $this, 'admin_action_site_settings_redirect' ] );
1033 - add_action( 'admin_action_elementor_edit_website_redirect', [ $this, 'admin_action_edit_website_redirect' ] );
1034 870
1035 871 add_action( 'current_screen', [ $this, 'init_new_template' ] );
1036 - add_action( 'current_screen', [ $this, 'init_floating_elements' ] );
1037 872 add_action( 'current_screen', [ $this, 'init_beta_tester' ] );
1038 873
1039 874 add_action( 'in_plugin_update_message-' . ELEMENTOR_PLUGIN_BASE, function( $plugin_data ) {
1040 875 $this->version_update_warning( ELEMENTOR_VERSION, $plugin_data['new_version'] );
1041 876 } );
1042 -
1043 - add_action( 'elementor/ajax/register_actions', [ $this, 'register_ajax_hints' ] );
1044 877 }
1045 878
1046 879 /**
1047 880 * @since 2.3.0
@@ -1109,112 +942,8 @@
1109 942 ];
1110 943 } )->all();
1111 944 }
1112 945
1113 - private function maybe_enqueue_hints() {
1114 - $plugin_slug = 'image-optimization';
1115 -
1116 - if ( ! Hints::should_display_hint( $plugin_slug ) ) {
1117 - return;
1118 - }
1119 -
1120 - wp_register_script(
1121 - 'media-hints',
1122 - $this->get_js_assets_url( 'media-hints' ),
1123 - [],
1124 - ELEMENTOR_VERSION,
1125 - true
1126 - );
1127 -
1128 - $one_subscription = Hints::is_plugin_connected_to_one_subscription();
1129 - $is_installed = Hints::is_plugin_installed( $plugin_slug );
1130 - $is_active = Hints::is_plugin_active( $plugin_slug );
1131 -
1132 - if ( $is_active ) {
1133 - return;
1134 - }
1135 -
1136 - if ( $one_subscription ) {
1137 - if ( ! $is_installed ) {
1138 - $description = esc_html__( 'Automatically optimize images to improve site speed and performance. Included with your ONE subscription.', 'elementor' );
1139 - $button_text = esc_html__( 'Install now', 'elementor' );
1140 - $button_url = Hints::get_plugin_install_url( $plugin_slug );
1141 - } elseif ( ! $is_active ) {
1142 - $description = esc_html__( 'Image Optimization is installed and included in your ONE subscription. Activate it to optimize images and improve site performance.', 'elementor' );
1143 - $button_text = esc_html__( 'Activate now', 'elementor' );
1144 - $button_url = Hints::get_plugin_activate_url( $plugin_slug );
1145 - }
1146 - } else {
1147 - $description = esc_html__( 'Optimize your images to enhance site performance by using Image Optimization.', 'elementor' );
1148 - if ( ! $is_installed ) {
1149 - $button_text = esc_html__( 'Install now', 'elementor' );
1150 - $button_url = Hints::get_plugin_install_url( $plugin_slug );
1151 - } elseif ( ! $is_active ) {
1152 - $button_text = esc_html__( 'Activate now', 'elementor' );
1153 - $button_url = Hints::get_plugin_activate_url( $plugin_slug );
1154 - }
1155 - }
1156 -
1157 - $dismissible = 'image_optimizer_hint';
1158 -
1159 - $title = esc_html__( 'Speed up your website with Image Optimization', 'elementor' );
1160 - $content = sprintf(
1161 - "<strong>%1\$s</strong><br>%2\$s <a class='e-btn-1' href='%3\$s' target='_blank'>%4\$s</a>!",
1162 - $title,
1163 - $description,
1164 - $button_url,
1165 - $button_text
1166 - );
1167 -
1168 - wp_localize_script( 'media-hints', 'elementorAdminHints', [
1169 - 'mediaHint' => [
1170 - 'display' => true,
1171 - 'type' => 'info',
1172 - 'content' => $content,
1173 - 'icon' => true,
1174 - 'dismissible' => $dismissible,
1175 - 'dismiss' => esc_attr__( 'Dismiss this notice.', 'elementor' ),
1176 - 'button_event' => $dismissible,
1177 - 'button_data' => base64_encode(
1178 - wp_json_encode( [
1179 - 'action_url' => $button_url,
1180 - ] ),
1181 - ),
1182 - ],
1183 - ] );
1184 -
1185 - wp_enqueue_script( 'media-hints' );
1186 - }
1187 -
1188 - public function register_ajax_hints( $ajax_manager ) {
1189 - $ajax_manager->register_ajax_action( 'elementor_image_optimization_campaign', [ $this, 'ajax_set_image_optimization_campaign' ] );
1190 - $ajax_manager->register_ajax_action( 'elementor_core_ally_campaign', [ $this, 'ajax_ally_campaign' ] );
1191 - }
1192 -
1193 - public function ajax_ally_campaign( $request ) {
1194 - if ( ! current_user_can( 'install_plugins' ) ) {
1195 - return;
1196 - }
1197 -
1198 - $campaign_data = [
1199 - 'campaign' => sanitize_key( $request['campaign'] ?? '' ),
1200 - 'source' => sanitize_key( $request['source'] ?? '' ),
1201 - 'medium' => sanitize_key( $request['medium'] ?? '' ),
1202 - ];
1203 -
1204 - set_transient( 'elementor_ea11y_campaign', $campaign_data, 30 * DAY_IN_SECONDS );
1205 - }
1206 -
1207 - public function ajax_set_image_optimization_campaign( $request ) {
1208 - if ( ! current_user_can( 'install_plugins' ) ) {
1209 - return;
1210 - }
1211 -
1212 - $campaign_data = [
1213 - 'campaign' => sanitize_key( $request['campaign'] ?? '' ),
1214 - 'source' => sanitize_key( $request['source'] ?? '' ),
1215 - 'medium' => sanitize_key( $request['medium'] ?? '' ),
1216 - ];
1217 -
1218 - set_transient( 'elementor_image_optimization_campaign', $campaign_data, 30 * DAY_IN_SECONDS );
946 + private function register_menu() {
947 + $this->menus['main'] = new MainMenu();
1219 948 }
1220 949 }