예제 #1
0
파일: Whups.php 프로젝트: jubinpatel/horde
 /**
  * Sets or returns the current sort field.
  *
  * @param string $b  The field to sort by.
  *
  * @return string  If $b is null, returns the previously set value.
  */
 public static function sortBy($b = null)
 {
     if (!is_null($b)) {
         self::$_sortBy = $b;
     } else {
         return self::$_sortBy;
     }
 }