mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-30 19:04:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			847 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			847 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Data;
 | |
| 
 | |
| /**
 | |
|  * Interface for sorting a result set
 | |
|  */
 | |
| interface Sortable
 | |
| {
 | |
|     /**
 | |
|      * Sort ascending
 | |
|      */
 | |
|     const SORT_ASC = 'ASC';
 | |
| 
 | |
|     /**
 | |
|      * Sort descending
 | |
|      */
 | |
|     const SORT_DESC  = 'DESC';
 | |
| 
 | |
|     /**
 | |
|      * Sort result set by the given field (and direction)
 | |
|      *
 | |
|      * Preferred usage:
 | |
|      * <code>
 | |
|      * $query->order('field, 'ASC')
 | |
|      * </code>
 | |
|      *
 | |
|      * @param  string   $field
 | |
|      * @param  string   $direction
 | |
|      *
 | |
|      * @return self
 | |
|      */
 | |
|     public function order($field, $direction = null);
 | |
| 
 | |
|     /**
 | |
|      * Whether an order is set
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function hasOrder();
 | |
| 
 | |
|     /**
 | |
|      * Get the order if any
 | |
|      *
 | |
|      * @return array|null
 | |
|      */
 | |
|     public function getOrder();
 | |
| }
 |