예제 #1
0
 /**
  * Setter for password column(s)
  * 
  * @param array $columnArray
  * @throws Exception
  * @return boolean
  */
 public static function setPasswordColumns(array $columnArray)
 {
     if (count($columnArray) <= 0) {
         throw new Exception('A list of columns must be specified as identifier columns');
     }
     self::$_passwordColumns = $columnArray;
     return true;
 }