getHtmlName() публичный Метод

Returns HTML name of control.
public getHtmlName ( ) : string
Результат string
Пример #1
0
 /**
  * Returns HTML name of control.
  * @return string
  */
 public function getHtmlName()
 {
     return parent::getHtmlName() . '[]';
 }
Пример #2
0
 /**
  * Returns HTML name of control.
  * @return string
  */
 public function getHtmlName()
 {
     return parent::getHtmlName() . ($this->control->multiple ? '[]' : '');
 }