PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
menu
/
mcsetup
<?php abstract class WPML_TM_MCS_Section_UI { private $id; private $title; public function __construct( $id, $title ) { $this->id = $id; $this->title = $title; } /** * @return mixed */ public function get_id() { return $this->id; } public function add_hooks() { add_filter( 'wpml_mcsetup_navigation_links', array( $this, 'mcsetup_navigation_links' ) ); } public function mcsetup_navigation_links( array $mcsetup_sections ) { $mcsetup_sections[ $this->id ] = esc_html( $this->title ); return $mcsetup_sections; } public function render() { $output = ''; $output .= '<div class="wpml-section" id="' . esc_attr( $this->id ) . '">'; $output .= '<div class="wpml-section-header">'; $output .= '<h3>' . esc_html( $this->title ) . '</h3>'; $output .= '</div>'; $output .= '<div class="wpml-section-content">'; $output .= $this->render_content(); $output .= '</div>'; $output .= '</div>'; return $output; } /** * @return string */ abstract protected function render_content(); }
[-] class-wpml-tm-mcs-pagination-render.php
[edit]
[-] class-wpml-tm-mcs-ate.php
[edit]
[-] class-wpml-tm-mcs-search-render.php
[edit]
[-] class-wpml-tm-mcs-section-ui.php
[edit]
[-] class-wpml-tm-mcs-custom-field-settings-menu-factory.php
[edit]
[-] class-wpml-translate-link-targets-ui.php
[edit]
[-] class-wpml-tm-mcs-ate-strings.php
[edit]
[-] class-wpml-tm-mcs-pagination-render-factory.php
[edit]
[-] class-wpml-tm-mcs-custom-field-settings-menu.php
[edit]
[-] CfMetaBoxOption.php
[edit]
[-] class-wpml-tm-options-ajax.php
[edit]
[-] class-wpml-tm-mcs-search-factory.php
[edit]
[-] class-wpml-tm-mcs-pagination-ajax-factory.php
[edit]
[-] class-wpml-tm-mcs-term-custom-field-settings-menu.php
[edit]
[+]
..
[-] class-wpml-tm-mcs-post-custom-field-settings-menu.php
[edit]
[-] class-wpml-tm-mcs-pagination-ajax.php
[edit]
[-] class-wpml-tm-pickup-mode-ajax.php
[edit]