初めてレコードを追加するときにのみ入力を許可する特定のフィールドがあるので、クラスが追加できるか、フォームがロードされた後のある時点でreadonly
を指定できるかどうか疑問に思っています。 、ただし(もちろん)、ユーザーに表示される前。
models\forms\myform.xml
からフォームをロードすると、クラスや読み取り専用などの属性が期待どおりにロードされます。以下は、フィールドが現在レンダリングされている方法で、libraries\joomla\form\form.phpを使用しています。
echo $this->form->getInput('myReadOnlyCode')
はい、できます。
「プラン」の概念を持つコンポーネントがあり、異なるアクセスレベルに対して同じビューを使用しますが、ユーザーグループに応じてフィールドにアクセスできるようにするかどうかを指定します。
したがって、プランを「実行」できるが編集はできない用途では、一連のフィールドを「オフ」にします。フィールドタイプによっては、いくつかのフィールド属性を設定する必要がある場合があります。
$this->form->setFieldAttribute('name', 'class', 'readonly');
$this->form->setFieldAttribute('name', 'readonly', 'true');
$this->form->setFieldAttribute('description', 'class', 'readonly');
$this->form->setFieldAttribute('description', 'disabled', 'true');
$this->form->setFieldAttribute('description', 'type', 'text');
$this->form->setFieldAttribute('published', 'class', 'readonly');
$this->form->setFieldAttribute('published', 'readonly', 'true');
$this->form->setFieldAttribute('publish_up', 'class', 'readonly');
$this->form->setFieldAttribute('publish_up', 'readonly', 'true');
$this->form->setFieldAttribute('publish_up', 'format', '%Y-%m-%d %H:%M:%S');
$this->form->setFieldAttribute('publish_up', 'filter', 'user_utc');
$this->form->setFieldAttribute('publish_down', 'class', 'readonly');
$this->form->setFieldAttribute('publish_down', 'readonly', 'true');
$this->form->setFieldAttribute('publish_down', 'format', '%Y-%m-%d %H:%M:%S');
$this->form->setFieldAttribute('publish_down', 'filter', 'user_utc');
したがって、myReadOnlyCode
フィールドが何であるかに応じて、上記のように1つまたは複数の属性を設定することでそれを行うことができます。標準のテキスト入力の場合:
$this->form->setFieldAttribute('myReadOnlyCode', 'class', 'readonly');
$this->form->setFieldAttribute('myReadOnlyCode', 'readonly', 'true');
Joomlaのコア記事の編集を比較してください。管理者-article.php-メソッドgetForm。
「バックドア」アップデートを防ぐためのフィルターに注意してください。
$user = JFactory::getUser();
// Check for existing article.
// Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('core.edit.state', 'com_content.article.' . (int) $id))
|| ($id == 0 && !$user->authorise('core.edit.state', 'com_content'))
)
{
// Disable fields for display.
$form->setFieldAttribute('featured', 'disabled', 'true');
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('publish_up', 'disabled', 'true');
$form->setFieldAttribute('publish_down', 'disabled', 'true');
$form->setFieldAttribute('state', 'disabled', 'true');
// Disable fields while saving.
// The controller has already verified this is an article you can edit.
$form->setFieldAttribute('featured', 'filter', 'unset');
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('publish_up', 'filter', 'unset');
$form->setFieldAttribute('publish_down', 'filter', 'unset');
$form->setFieldAttribute('state', 'filter', 'unset');
}