> drupal 8的魯棒插件系統,使後端開發人員具有可重複使用的功能。本文(兩個部分中的第一部分)詳細信息構建功能,啟用具有節點實體的自定義表單,從而允許節點束的配置與節點顯示旁邊使用各種形式類型。 通過擴展提供的基類可以輕鬆定義新的形式類型。 (有關完整的代碼示例,請參閱此存儲庫
)。>
本教程避免了深入的插件力學,假設對基本理論熟悉。我們將使用兩個接口和六個類構建自定義插件類型(看似大的數字,但大多是直截了當的樣板代碼。 第二部分將演示將這些可重複使用的形式附加到節點上。
> 密鑰概念:
- > Drupal 8的插件系統促進可重複使用的功能,為節點實體啟用自定義表單。 可以將節點捆綁包配置為在節點顯示內使用多個表單類型。
- >插件管理器,對於插件發現和加載必不可少的,利用Drupal的默認基類以易於擴展。 所有插件都必須實現定義的接口。
- >插件定義使用包含關鍵信息的註釋:插件子目錄,所需界面和定義插件屬性的註釋類。
- 服務,對於形式結構必不可少。 該插件與表單類交互;下一步是將這些表單與節點顯示。
form_builder
>
>插件管理器:>
插件管理器,對於發現和加載插件至關重要,它擴展了Drupal的。 在模塊的DefaultPluginManager
目錄中,/src
>包含:ReusableFormManager.php
>
<?php namespace Drupal\reusable_forms; use Drupal\Core\Plugin\DefaultPluginManager; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; class ReusableFormsManager extends DefaultPluginManager { public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { parent::__construct('Plugin/ReusableForm', $namespaces, $module_handler, 'Drupal\reusable_forms\ReusableFormPluginInterface', 'Drupal\reusable_forms\Annotation\ReusableForm'); $this->alterInfo('reusable_forms_info'); $this->setCacheBackend($cache_backend, 'reusable_forms'); } }>這擴展了
,覆蓋了構造函數。 關鍵參數定義:DefaultPluginManager
- :插件子目錄。
Plugin/ReusableForm
- :必需的插件接口。
Drupalreusable_formsReusableFormPluginInterface
- :定義插件屬性的註釋類。
Drupalreusable_formsAnnotationReusableForm
>
)允許模塊修改插件定義,並配置了緩存後端。
reusable_forms_info
接口(in
)定義了所有插件必須實現的方法:<?php namespace Drupal\reusable_forms; use Drupal\Core\Plugin\DefaultPluginManager; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; class ReusableFormsManager extends DefaultPluginManager { public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { parent::__construct('Plugin/ReusableForm', $namespaces, $module_handler, 'Drupal\reusable_forms\ReusableFormPluginInterface', 'Drupal\reusable_forms\Annotation\ReusableForm'); $this->alterInfo('reusable_forms_info'); $this->setCacheBackend($cache_backend, 'reusable_forms'); } }
>getName()
>返回插件名稱; buildForm()
接受實體,並返回實現Drupalreusable_formsFormReusableFormInterface
>和PluginInspectionInterface
,以添加功能和依賴注入。 ContainerFactoryPluginInterface
>
>插件註釋:
)定義了插件屬性:ReusableForm.php
/src/Annotation
<?php namespace Drupal\reusable_forms; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Component\Plugin\PluginInspectionInterface; interface ReusableFormPluginInterface extends PluginInspectionInterface, ContainerFactoryPluginInterface { public function getName(); public function buildForm($entity); },
和id
(完全限定的表單名稱)在此處定義。 name
>
form
插件base類(
in)提供默認值:ReusableFormPluginBase.php
>
/src
<?php namespace Drupal\reusable_forms\Annotation; use Drupal\Component\Annotation\Plugin; /** * @Annotation */ class ReusableForm extends Plugin { public $id; public $name; public $form; },實現了
>。 使用註釋中指定的表單類實現PluginBase
和ReusableFormPluginInterface
。 form_builder
>
getName()
buildForm()
形式接口和基類:
> 一個簡單的表單接口(in
)和基類(inReusableFormInterface.php
>)是為了一致性而創建的:(這些在原始響應中顯示,並且在此處未重複此處) 。 /src/Form
ReusableFormBase.php
/src/Form
>結論(第1部分):
以上是Drupal 8自定義插件類型的詳細內容。更多資訊請關注PHP中文網其他相關文章!

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

PHP在現代化進程中仍然重要,因為它支持大量網站和應用,並通過框架適應開發需求。 1.PHP7提升了性能並引入了新功能。 2.現代框架如Laravel、Symfony和CodeIgniter簡化開發,提高代碼質量。 3.性能優化和最佳實踐進一步提升應用效率。

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP類型提示提升代碼質量和可讀性。 1)標量類型提示:自PHP7.0起,允許在函數參數中指定基本數據類型,如int、float等。 2)返回類型提示:確保函數返回值類型的一致性。 3)聯合類型提示:自PHP8.0起,允許在函數參數或返回值中指定多個類型。 4)可空類型提示:允許包含null值,處理可能返回空值的函數。

PHP中使用clone關鍵字創建對象副本,並通過\_\_clone魔法方法定制克隆行為。 1.使用clone關鍵字進行淺拷貝,克隆對象的屬性但不克隆對象屬性內的對象。 2.通過\_\_clone方法可以深拷貝嵌套對象,避免淺拷貝問題。 3.注意避免克隆中的循環引用和性能問題,優化克隆操作以提高效率。

PHP適用於Web開發和內容管理系統,Python適合數據科學、機器學習和自動化腳本。 1.PHP在構建快速、可擴展的網站和應用程序方面表現出色,常用於WordPress等CMS。 2.Python在數據科學和機器學習領域表現卓越,擁有豐富的庫如NumPy和TensorFlow。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

PhpStorm Mac 版本
最新(2018.2.1 )專業的PHP整合開發工具

SublimeText3 Linux新版
SublimeText3 Linux最新版

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

記事本++7.3.1
好用且免費的程式碼編輯器