PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
menu
/
mcsetup
<?php /** * Class WPML_TM_MCS_Pagination_Render_Factory */ class WPML_TM_MCS_Pagination_Render_Factory { /** * @var int Items per page */ private $items_per_page; /** * WPML_TM_MCS_Pagination_Render_Factory constructor. * * @param int $items_per_page */ public function __construct( $items_per_page ) { $this->items_per_page = $items_per_page; } /** * @param $items_per_page * @param $total_items * @param int $current_page * * @return WPML_TM_MCS_Pagination_Render */ public function create( $total_items, $current_page = 1 ) { $pagination = new WPML_Admin_Pagination(); $pagination->set_items_per_page( $this->items_per_page ); $pagination->set_total_items( $total_items ); $pagination->set_current_page( $current_page ); $template = new WPML_Twig_Template_Loader( array( WPML_TM_PATH . '/templates/menus/mcsetup', ) ); return new WPML_TM_MCS_Pagination_Render( $template->get_template(), $pagination ); } }
[-] 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]