mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +00:00
V 3.5 RC 1
This commit is contained in:
51
lib/classes/User/QueryInterface.class.php
Normal file
51
lib/classes/User/QueryInterface.class.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Phraseanet
|
||||
*
|
||||
* (c) 2005-2010 Alchemy
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package User
|
||||
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
|
||||
* @link www.phraseanet.com
|
||||
*/
|
||||
interface User_QueryInterface
|
||||
{
|
||||
public function __construct(appbox &$appbox);
|
||||
|
||||
public function get_results();
|
||||
|
||||
public function who_have_right(Array $rights);
|
||||
|
||||
public function who_have_not_right(Array $rights);
|
||||
|
||||
public function execute();
|
||||
|
||||
public function get_total();
|
||||
|
||||
public function get_page();
|
||||
|
||||
public function on_bases_where_i_am(ACL $ACL, Array $rights);
|
||||
|
||||
public function on_sbas_where_i_am(ACL $ACL, Array $rights);
|
||||
|
||||
public function limit($offset_start, $results_quantity);
|
||||
|
||||
public function like($like_field, $like_value);
|
||||
|
||||
public function like_match($like_match);
|
||||
|
||||
public function on_sbas_ids(Array $sbas_ids);
|
||||
|
||||
public function on_base_ids(Array $base_ids);
|
||||
|
||||
public function sort_by($sort, $ord = 'asc');
|
||||
|
||||
public function get_inactives($boolean = true);
|
||||
}
|
Reference in New Issue
Block a user