タグ付けされた質問 「plugins」

1
プログラムで時間型フィールドを設定するにはどうすればよいですか?
カスタムコンテンツエンティティタイプを作成します。 イベント時間に1つのフィールドが必要です。 時間フィールドはありませんが、dataTime_typeがあるため、カスタムフィールドのプラグインを作成します。 FieldType:TimeItem.php /** * Plugin implementation of the 'time' field type. * * @FieldType( * id = "time", * label = @Translation("Time Field"), * description = @Translation("Permet la creation d'un champ de type time"), * default_widget = "time_widget", * default_formatter = "time_formatter" * ) */ /** * {@inheritdoc} …

2
ブロックプラグインで$ this-> t( 'text')とt( 'text')を使用することの違いは何ですか
ブロックプラグインを構築するための多くのチュートリアルで、 $this->t('text') 特にブロックフォーム機能で、翻訳可能なテキストを作成するために使用されます。ただし、 t('text') エラーは発生しません。これらのどちらを使用しても違いはありますか?そうでない場合、ベストプラクティスは何ですか?
7 8  blocks  plugins 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.