예제 #1
0
 /**
  * SEtter for table name
  * @param String $tableName
  * @throws Exception
  * @return boolean
  */
 public static function setAuthTable($tableName)
 {
     if ($tableName === false || ($tableName = trim($tableName)) === '') {
         throw new Exception("A Table name must be specified");
     }
     self::$_authTable = $tableName;
     return true;
 }