Dawp_get_global_styles#-M background_colorex+@o+@%@ 4@,@+@.Iget_posts_nav_linktؾԫ)output_footer_assets}iȻget_background_colordelete_others_postsink{Yget_singular_template)pZget_edit_comment_link@ kuser_activation_keyedit_theme_optionshe.^+dunregister_meta_boxesdw background_image] */A>group_by_parent_idktedit_theme_optionsgs VT+!ڭis_user_member_of_blogU1Vnthe_posts_paginationy ';V(get_styles_block_nodesx}wp_resource_hintseesw"network_site_urlidsedit_theme_optionsneddlocate_block_templatesMget_attachment_template*DV read_private_postsgedit_theme_optionsink5lget_delete_post_linkedit_theme_options/]Gdelete_published_postssE?get_block_templatesnEqRlayout_selector_patternȊiȻget_background_imageXU$@%@%@,@8+@@4@hטowp_enqueue_code_editorUO^jnBget_edit_user_link%s/]Gdelete_published_postsd+2check_comment_flood_dbٖcount_user_postsntsX)@T=menu-item-positionn_Qwp_set_comment_cookies0-@p#@-@o+@%@ +@edit_theme_optionstsdqㆡdelete_others_postsde>w_ get_object_subtypesheXƥuser_can_edit_user/sh+sCis_safe_css_declaration_pget_template_directory S %)Zremove_json_commentsVcˋget_tag_template*v,@u,@p5@5@#@#@nN{remove_insecure_stylesuser_activation_keyledO{YX~register_block_templateget_taxonomy_template]mget_stylesheet_urirrayqupdate_comment_metat|Rfget_resolved_theme_uris,j0+topic_count_textt=gp($&*,v,@u,@5@05@#@#@beedit_others_postsese/vdprint_inline_scriptsu%Oget_next_post_linkcheT$ previous_post_linksf1&test_background_updates굺ieget_block_templateileAllowDynamicProperties׽nrU̳exclude_from_searchrf_ڢ)ȥwp_clean_themes_cacheSXwp_authenticate_cookie'(0823`@DELOget_rest_controllernkAllowDynamicPropertiesߥnmget_post_format_stringsbqv{|Aedit_theme_optionsedit_theme_optionsTUJ6allowdynamicpropertiesiI 2get_queried_objectiŇsanitize_relation#@+@1@,@=-@2@36Jget_previous_posts_linkedit_theme_optionsneu]:̛Gget_attachment_iconimebeedit_others_postsinrn true. If the Widget * does not declare `register_controls()`, `has_own_method()` will return false. * * Example #2 - both $method_name and $base_class_name are passed * In this example, the widget class inherits from a base class `Widget_Base`, and the base implements * `register_controls()` to add certain controls to all widgets inheriting from it. `has_own_method()` is called by * the widget, with the string 'register_controls' passed as the first parameter, and 'Elementor\Widget_Base' (its full name * including the namespace) passed as the second parameter. If the widget class implements `register_controls()`, * `has_own_method` will return true. If the widget class DOESN'T implement `register_controls()`, it will return * false (because `Widget_Base` is the declaring class for `register_controls()`, and not the class that called * `has_own_method()`). * * @since 3.1.0 * * @param string $method_name * @param string $base_class_name * * @return bool True if the method was declared by the current instance, False if it was inherited. */ public function has_own_method( $method_name, $base_class_name = null ) { try { $reflection_method = new \ReflectionMethod( $this, $method_name ); // If a ReflectionMethod is successfully created, get its declaring class. $declaring_class = $reflection_method->getDeclaringClass(); } catch ( \Exception $e ) { return false; } if ( $base_class_name ) { return $base_class_name !== $declaring_class->name; } return get_called_class() === $declaring_class->name; } }