In setting up the parameters for my component,I want one of them to be an article ID that is opened and used. According to Joomla Standard Parameter Types, text is the only option.
Can integers be specified, or is there a way to validate the input?
In setting up the parameters for my component,I want one of them to be an article ID that is opened and used. According to Joomla Standard Parameter Types, text is the only option.
Can integers be specified, or is there a way to validate the input?
私の知る限り、テキストは唯一の標準的なソリューションです。ただし、Joomla ではカスタム パラメータ タイプを使用できます。整数に対して 1 つ行うことも考えられますが、記事の選択のみの場合は、Joomla が com_content コンポーネントに対して行うことを行うことができます。
administrator\components\com_mycomponent\elements
administrator\components\com_content\elements\article.php
新しいフォルダー (およびセキュリティのための index.html) にコピーします。<params addpath="/administrator/components/com_mycomponent/elements" />
<param type="article" name="article_id" default="0" label="Select Article" />