コード例 #1
0
ファイル: SearchForm.php プロジェクト: youprofit/Zurmo
 /**
  * (non-PHPdoc)
  * @see ModelForm::isAttribute()
  */
 public function isAttribute($attributeName)
 {
     assert('is_string($attributeName)');
     assert('$attributeName != ""');
     if ($this->doesNameResolveNameForDelimiterSplit($attributeName)) {
         return true;
     }
     return parent::isAttribute($attributeName);
 }