Bravo3\Orm\Mappers\Metadata\Entity::getSortables PHP 메소드

getSortables() 공개 메소드

Get Sortables
public getSortables ( ) : Sortable[]
리턴 Sortable[]
    public function getSortables()
    {
        return $this->sortables;
    }

Usage Example

예제 #1
0
 /**
  * Compile all sortable table indices
  *
  * @param Entity $md
  * @return array
  */
 private function compileSortIndices(Entity $md)
 {
     return $this->compileSortables($md->getSortables());
 }