PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
jobs
<?php class WPML_TM_Jobs_Date_Range { /** @var DateTime|null */ private $begin; /** @var DateTime|null */ private $end; /** * Specify how we should treat date values which are NULL * * @var bool */ private $include_null_date; /** * @param DateTime|null $begin * @param DateTime|null $end * @param bool $include_null_date */ public function __construct( DateTime $begin = null, DateTime $end = null, $include_null_date = false ) { $this->begin = $begin; $this->end = $end; $this->include_null_date = (bool) $include_null_date; } /** * @return DateTime|null */ public function get_begin() { return $this->begin; } /** * @return DateTime|null */ public function get_end() { return $this->end; } /** * @return bool */ public function is_include_null_date() { return $this->include_null_date; } }
[-] 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]