搜尋
首頁後端開發php教程Drupal 8自定義插件類型

> drupal 8的魯棒插件系統,使後端開發人員具有可重複使用的功能。本文(兩個部分中的第一部分)詳細信息構建功能,啟用具有節點實體的自定義表單,從而允許節點束的配置與節點顯示旁邊使用各種形式類型。 通過擴展提供的基類可以輕鬆定義新的形式類型。 (有關完整的代碼示例,請參閱此存儲庫

)。

> Drupal 8 Custom Plugin Types

本教程避免了深入的插件力學,假設對基本理論熟悉。我們將使用兩個接口和六個類構建自定義插件類型(看似大的數字,但大多是直截了當的樣板代碼。 第二部分將演示將這些可重複使用的形式附加到節點上。

> 密鑰概念:

  • > 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>
一個Alter Hook(

)允許模塊修改插件定義,並配置了緩存後端。 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>

>插件註釋: 註釋類(

in

)定義了插件屬性: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;
}
,實現了,並使用依賴性注入

>。 使用註釋中指定的表單類實現PluginBaseReusableFormPluginInterfaceform_builder> getName() buildForm()形式接口和基類:

> 一個簡單的表單接口(in

)和基類(

inReusableFormInterface.php>)是為了一致性而創建的:(這些在原始響應中顯示,並且在此處未重複此處) 。 /src/Form ReusableFormBase.php/src/Form>結論(第1部分):>

>這第一部分設置了自定義插件類型,並準備將其與表單類集成。 第二部分將涵蓋用節點顯示這些表格,涉及節點類型的配置並在內容視圖模式中呈現形式。

以上是Drupal 8自定義插件類型的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
高流量網站的PHP性能調整高流量網站的PHP性能調整May 14, 2025 am 12:13 AM

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

PHP中的依賴注入:初學者的代碼示例PHP中的依賴注入:初學者的代碼示例May 14, 2025 am 12:08 AM

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

PHP性能:是否可以優化應用程序?PHP性能:是否可以優化應用程序?May 14, 2025 am 12:04 AM

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

PHP性能優化:最終指南PHP性能優化:最終指南May 14, 2025 am 12:02 AM

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

PHP依賴注入容器:快速啟動PHP依賴注入容器:快速啟動May 13, 2025 am 12:11 AM

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

PHP中的依賴注入與服務定位器PHP中的依賴注入與服務定位器May 13, 2025 am 12:10 AM

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

PHP性能優化策略。PHP性能優化策略。May 13, 2025 am 12:06 AM

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

PHP電子郵件驗證:確保正確發送電子郵件PHP電子郵件驗證:確保正確發送電子郵件May 13, 2025 am 12:06 AM

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

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

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

AI Clothes Remover

AI Clothes Remover

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

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

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

熱門文章

熱工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具