我是 Yii 的新手,我遇到了一些问题。希望这里的一些专业人士可以帮助我解决这个问题。我在网上买了一个脚本,我正在根据需要对其进行编辑。
我想要一个带有默认文本的文本区域。例子;
Name:
Age:
Sex:
它现在正在生成什么:
<textarea class="span vertical medium" name="MAccount[accountInfo]" id="MAccount_accountInfo"></textarea>
我希望它生成什么,或类似的东西:
<textarea class="span vertical medium" name="MAccount[accountInfo]" id="MAccount_accountInfo">Name: <br> Age: <br> Sex:</textarea>
类似上面的东西。但我只能生成一个空白/无内容的文本区域。下面是我的代码,它位于一个工作集内。
public function properties() {
$properties = array(
'elements' => array(
'accountInfo' => array(
'type' => 'textarea',
'class' => 'span vertical medium',
),
'email' => array(
'disabled' => true,
'append' => $this->model()->role == 'unverified' ? $this->t('unverified') : $this->t('verified'),
'hint' => $this->model()->role == 'unverified' ? $this->resendBtn() : '',
),
wm()->get('project.edit.buttons', array('step' => $this->step, 'projectId' => $this->project->id))->render('tools', array(), true),
),
'model' => $this->model(),
'class' => 'projectEditForm',
);
return $properties;
}