PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
inc
/
post-translation
<?php class WPML_Post_Hierarchy_Sync extends WPML_Hierarchy_Sync { protected $element_id_column = 'ID'; protected $parent_element_id_column = 'ID'; protected $parent_id_column = 'post_parent'; protected $element_type_column = 'post_type'; protected $element_type_prefix = 'post_'; /** * @param wpdb $wpdb */ public function __construct( &$wpdb ) { parent::__construct( $wpdb ); $this->elements_table = $wpdb->posts; } /** * @param string $element_type * * @return bool */ public function is_hierarchical( $element_type ) { return is_post_type_hierarchical( $element_type ); } }
[-] wpml-root-page-actions.class.php
[edit]
[-] wpml-post-translation.class.php
[edit]
[-] wpml-post-duplication.class.php
[edit]
[-] wpml-comment-duplication.class.php
[edit]
[-] wpml-post-hierarchy-sync.class.php
[edit]
[-] wpml-create-post-helper.class.php
[edit]
[+]
..
[-] wpml-post-synchronization.class.php
[edit]
[-] wpml-frontend-post-actions.class.php
[edit]
[-] wpml-admin-post-actions.class.php
[edit]
[-] wpml-wordpress-actions.class.php
[edit]