/home/vianto5/heredit.mx/wp-content/plugins/elementor/core/common/modules/finder
NameSizeModeActions
categories/-0755rm
base-category.php16230644editdlrm
categories-manager.php37710644editdlrm
module.php27050644editdlrm
template.php19460644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/elementor/core/common/modules/finder/base-category.php (1623B)
modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( get_class( $this ) . '::' . __FUNCTION__, '3.5.0', 'This method will be replaced with an abstract method.' ); return ''; } /** * Get category items. * * @since 2.3.0 * @abstract * @access public * * @param array $options * * @return array */ abstract public function get_category_items( array $options = [] ); /** * Is dynamic. * * Determine if the category is dynamic. * * @since 2.3.0 * @access public * * @return bool */ public function is_dynamic() { return false; } /** * Get init settings. * * @since 2.3.0 * @access protected * * @return array */ protected function get_init_settings() { $settings = [ 'title' => $this->get_title(), 'dynamic' => $this->is_dynamic(), ]; if ( ! $settings['dynamic'] ) { $settings['items'] = $this->get_category_items(); } return $settings; } }