本文整理匯總了PHP中TextareaField::name方法的典型用法代碼示例。如果您正苦於以下問題:PHP TextareaField::name方法的具體用法?PHP TextareaField::name怎麽用?PHP TextareaField::name使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TextareaField
的用法示例。
在下文中一共展示了TextareaField::name方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _createAddCommentForm
function _createAddCommentForm($content_id, $content_type)
{
$form = new Form();
$form->action = "/comment/add";
$form->submitText = "Add Comment";
$form->add(HiddenField::name('content_id')->value($content_id));
$form->add(HiddenField::name('content_type')->value($content_type));
$form->add(TextareaField::name('comment')->required(true)->width('50%')->rows(3));
return $form;
}
示例2: _createSliceConfigRawForm
/**
* @param $config SliceConfig
* @return Form
*/
public function _createSliceConfigRawForm($config)
{
$form = new Form('raw');
//load up our engines.
if (User::isAdmin()) {
$availableEngines = SliceEngine::getAllEngines()->getAll();
} else {
$availableEngines = SliceEngine::getPublicEngines()->getAll();
}
$engines = array();
foreach ($availableEngines as $row) {
/* @var $e SliceEngine */
$e = $row['SliceEngine'];
$engines[$e->id] = $e->getName();
}
$form->add(SelectField::name('engine_id')->label('Slice Engine')->help('Which slicing engine does this config use?')->required(true)->value($config->get('engine_id'))->options($engines));
$form->add(TextField::name('config_name')->label('Config Name')->help('What is the name of this slicing configuration.')->required(true)->value($config->get('config_name')));
if ($config->isHydrated()) {
$form->add(CheckboxField::name('expire_slicejobs')->label('Expire Old Slice Jobs')->help('If checked, old slice jobs will be expired and never re-used.')->value(1));
}
$form->add(TextareaField::name('default_config')->label('Raw Configuration Text')->help('Edit the raw configuration text for this engine.')->required(true)->width('60%')->rows('20')->value($config->get('config_data')));
return $form;
}