> 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中文網其他相關文章!

TheSecretTokeEpingAphp-PowerEdwebSiterUnningSmoothlyShyunderHeavyLoadInVolvOLVOLVOLDEVERSALKEYSTRATICES:1)emplactopCodeCachingWithOpcachingWithOpCacheToreCescriptexecution Time,2)使用atabasequercachingCachingCachingWithRedataBasEndataBaseLeSendataBaseLoad,3)

你應該關心DependencyInjection(DI),因為它能讓你的代碼更清晰、更易維護。 1)DI通過解耦類,使其更模塊化,2)提高了測試的便捷性和代碼的靈活性,3)使用DI容器可以管理複雜的依賴關係,但要注意性能影響和循環依賴問題,4)最佳實踐是依賴於抽象接口,實現鬆散耦合。

是的,優化papplicationispossibleandessential.1)empartcachingingcachingusedapcutorediucedsatabaseload.2)優化的atabaseswithexing,高效Quereteries,and ConconnectionPooling.3)EnhanceCodeWithBuilt-unctions,避免使用,避免使用ingglobalalairaiables,並避免使用

theKeyStrategiestosigantificallyBoostPhpaPplicationPerformenCeare:1)UseOpCodeCachingLikeLikeLikeLikeLikeCacheToreDuceExecutiontime,2)優化AtabaseInteractionswithPreparedStateTementStatementStatementAndProperIndexing,3)配置

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增強codemodocultion,可驗證性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

選擇DependencyInjection(DI)用於大型應用,ServiceLocator適合小型項目或原型。 1)DI通過構造函數注入依賴,提高代碼的測試性和模塊化。 2)ServiceLocator通過中心註冊獲取服務,方便但可能導致代碼耦合度增加。

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)啟用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替換loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

phpemailvalidation invoLvesthreesteps:1)格式化進行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)


熱AI工具

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

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

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SublimeText3漢化版
中文版,非常好用

WebStorm Mac版
好用的JavaScript開發工具

禪工作室 13.0.1
強大的PHP整合開發環境

SublimeText3 Linux新版
SublimeText3 Linux最新版

Dreamweaver CS6
視覺化網頁開發工具