我已經創建庫全球加載庫(例如-libraries.yml):Drupal的8 - 從一個自定義模塊
example:
version: VERSION
js:
js/example.js: {}
css:
theme:
css/example.css: {}
我試圖做這個全球加載(example.info.yml):
name: Example Module
type: module
description: "A module that is responsible for ..."
package: Custom
core: 8.x
version: 1.0-SNAPSHOT
libraries:
- example/example
我可以成功加載特定形式做:
$form['#attached']['library'][] = 'example/example';
關於如何讓它在全球範圍內工作的任何想法?
我需要爲創造T定製主題?我的意圖是隻有一個模塊。 –
是的,你需要一個自定義的主題。創建它簡單而快速。 https://www.drupal.org/docs/8/theming –