PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
ATE
/
Review
<?php namespace WPML\TM\ATE\Review; use WPML\Collect\Support\Traits\Macroable; use WPML\FP\Fns; use WPML\FP\Logic; use WPML\FP\Lst; use WPML\FP\Obj; use function WPML\FP\curryN; use function WPML\FP\pipe; /** * Class ReviewStatus * @package WPML\TM\ATE\Review * * @method static callable|bool needsReview( ...$reviewStatus ) - Curried :: string->bool * @method static callable|bool doesJobNeedReview( ...$job ) - Curried :: \stdClass->bool */ class ReviewStatus { use Macroable; const NEEDS_REVIEW = 'NEEDS_REVIEW'; const EDITING = 'EDITING'; const ACCEPTED = 'ACCEPTED'; public static function init() { self::macro( 'needsReview', Lst::includes( Fns::__, [ ReviewStatus::NEEDS_REVIEW, ReviewStatus::EDITING ] ) ); self::macro( 'doesJobNeedReview', curryN( 1, Logic::ifElse( Fns::identity(), pipe( Obj::prop( 'review_status' ), self::needsReview() ), Fns::always(false) ) )); } } ReviewStatus::init();
[-] ReviewCompletedNotice.php
[edit]
[-] ReviewStatus.php
[edit]
[-] NextTranslationLink.php
[edit]
[-] Cancel.php
[edit]
[-] ApplyJob.php
[edit]
[-] UpdateTranslation.php
[edit]
[-] PreviewLink.php
[edit]
[-] StatusIcons.php
[edit]
[-] AcceptTranslation.php
[edit]
[-] ApproveTranslations.php
[edit]
[-] ReviewTranslation.php
[edit]
[+]
..
[-] NonPublicCPTPreview.php
[edit]