Exemple #1
0
 public function _order()
 {
     $id = abs((int) $_GET['id']);
     if (!$id) {
         return;
     }
     $entity = $this->getRealEntityInUse($id);
     SQL::order($entity->getId(), $entity->getDbTableName(), $_GET['direct']);
     back();
 }