コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function Type()
 {
     $parent = parent::Type();
     if ($this->readonly) {
         return $parent . ' readonly';
     }
     return $parent;
 }
コード例 #2
0
ファイル: TextareaField.php プロジェクト: normann/sapphire
 public function Type()
 {
     return parent::Type() . ($this->readonly ? ' readonly' : '');
 }