Pages::isAll($criteria)

Version 4

Check if all pages in collection meets the given criteria.

Return value

Bool

Arguments

$criteria
Search criteria. See Pages::hae()

Full documentation

If all tasks in project are done, mark the project as done:

if ( $Project->tasks->isAll('status=Done') ){
    $Project->status->setValue('Done');
}