drupal8
木子耗2009
PHP开发工程师->系统架构
展开
-
drupal8执行流程图
需要的加我微信 muzihao2014原创 2016-12-22 11:30:25 · 634 阅读 · 0 评论 -
drupal8 url link
// Internal path (defined by a route in Drupal 8).use Drupal\Core\Url;$url= Url::fromRoute('book.admin');$internal_link= \Drupal::l(t('Book admin'),$url); // External Uri.use Drupal\Core\Url;$原创 2017-03-04 14:11:06 · 1602 阅读 · 0 评论 -
BigPipe:高性能的“流水线技术”网页
https://isux.tencent.com/bigpipe-pipelining-web-pages-for-high-performance.html转载 2017-02-28 14:59:05 · 385 阅读 · 0 评论 -
drupal8 form api
https://api.drupal.org/api/drupal/namespace/Drupal%21Core%21Render%21Element/8.2.x原创 2017-01-01 15:43:02 · 668 阅读 · 0 评论 -
table field Data types
https://www.drupal.org/node/159605原创 2017-01-01 15:21:07 · 333 阅读 · 0 评论 -
Disable Drupal 8 caching during development
https://www.drupal.org/node/2598914原创 2017-01-14 09:42:34 · 233 阅读 · 0 评论 -
drupal8 '#theme'
$build['image'] = array( '#theme' => 'image', '#uri' => drupal_get_path('module', 'uc_2checkout') . '/images/2co_logo.jpg', '#alt' => $this->t('2Checkout'), '#attributes' =原创 2017-01-07 16:24:57 · 550 阅读 · 0 评论 -
drupal8 常用
1. 获得当前主题的url : {{ base_path ~ directory }}原创 2016-12-29 16:31:56 · 483 阅读 · 0 评论 -
通过代码重写menu菜单
https://www.drupal.org/node/2122241原创 2017-01-06 15:39:42 · 424 阅读 · 0 评论 -
5 Steps to Build a Drupal 8 Multi-lingual Site
https://www.ostraining.com/blog/drupal/d8-multi-lingual/转载 2016-12-28 16:02:27 · 294 阅读 · 0 评论 -
Let’s debug in Drupal 8 !
It has been nearly 7 months since Drupal 8 first release and as a developer, I am still in the learning process. It can be hard sometimes to know what is going wrong with your code and how to solve it原创 2016-12-25 16:04:53 · 864 阅读 · 0 评论 -
学习在Drupal8中调试Twig
http://drupalchina.cn/node/3059原创 2016-12-25 15:47:52 · 899 阅读 · 0 评论 -
Drupal 8 内核模块变化
从 Drupal 8 内核中移除的模块Blog - 从核心移除,作为独立的贡献模块 Blog (http://drupal.org/project/blog)。原本 Drupal 安装起来就什么都不是,现在连 Blog 功能也作为贡献模块,想必新手用户会更困惑(呵呵)Dashboard - 此模块现在是 Homebox 了(http://drupal.org/project/h原创 2016-12-22 14:56:50 · 554 阅读 · 0 评论 -
Cache Drupal 8 Render Arrays
QuestionCacheability of render arrays.How to Cache, clear cache (basend on time , tag) of a drupal 8 render array ?Cache configuration of a renderer array (Just an exaple)$render_array转载 2017-03-31 10:44:13 · 369 阅读 · 0 评论