Yoast_Form_Fieldset::__construct() public Yoast 1.0
Запрещена (устарела) с версии 11.9. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Constructor.
{} Это метод класса: Yoast_Form_Fieldset{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Yoast_Form_Fieldset = new Yoast_Form_Fieldset(); $Yoast_Form_Fieldset->__construct( $id, $legend_content, $content );
- $id(строка) (обязательный)
- ID for the fieldset.
- $legend_content(строка) (обязательный)
- The translatable legend text.
- $content(строка) (обязательный)
- The grouped form elements for the fieldset.
Список изменений
Устарела с | 11.9 |
Код Yoast_Form_Fieldset::__construct() Yoast Form Fieldset:: construct Yoast 15.6.2
public function __construct( $id, $legend_content, $content ) {
_deprecated_function( __METHOD__, '11.9' );
$this->id = $id;
$this->legend_content = $legend_content;
$this->content = $content;
}