コード例 #1
0
ファイル: WFSpamHoneypot.php プロジェクト: apinstein/phocoa
 function restoreState()
 {
     //  must call super
     parent::restoreState();
     if (!empty($_REQUEST[$this->honeypotName])) {
         throw new WFRequestController_HTTPException("Server problem.", 400);
     }
 }
コード例 #2
0
ファイル: WFSearchField.php プロジェクト: apinstein/phocoa
 public static function exposedProperties()
 {
     $items = parent::exposedProperties();
     return array_merge($items, array('nullPlaceholder'));
 }