PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
jobs
<?php class WPML_TM_Job_TS_Status { /** @var string */ private $status; /** @var array */ private $links = array(); /** * WPML_TM_Job_TS_Status constructor. * * @param string $status * @param array $links */ public function __construct( $status, $links ) { $this->status = $status; $this->links = $links; } /** * @return string */ public function get_status() { return $this->status; } /** * @return array */ public function get_links() { return $this->links; } public function __toString() { if ( $this->status ) { return wp_json_encode( array( 'status' => $this->status, 'links' => $this->links, ) ); } return ''; } }
[-] class-wpml-tm-jobs-date-range.php
[edit]
[-] class-wpml-tm-jobs-search-params.php
[edit]
[-] Manual.php
[edit]
[-] class-wpml-tm-job-ts-status.php
[edit]
[-] class-wpml-tm-jobs-sorting-param.php
[edit]
[-] class-wpml-tm-job-entity.php
[edit]
[-] class-wpml-tm-job-element-entity.php
[edit]
[-] Loader.php
[edit]
[+]
utils
[-] class-wpml-tm-job-elements-repository.php
[edit]
[-] class-wpml-tm-jobs-batch.php
[edit]
[-] class-wpml-tm-jobs-collection.php
[edit]
[-] class-wpml-tm-post-job-entity.php
[edit]
[+]
..
[-] class-wpml-tm-jobs-repository.php
[edit]
[+]
endpoint
[+]
query
[-] class-wpml-tm-jobs-needs-update-param.php
[edit]