跳转到主要内容
2016.2.27-28首届Drupal中国大会

2016首届Drupal中国大会

各位朋友:

  Drupal做为世界最顶级的开源内容管理系统,内容管理框架和企业应用集成平台之一,在政府、高科技、高等教育、金融、生命科学行业、出版发行、媒体娱乐等各行各业有着广泛的应用。

为了更好的促进Drupal在中国的发展。为此,特举办首届Drupal中国大会。

一、 举办单位

中国科学院物理研究所图书馆

北京亚艾元软件有限责任公司

二、 参加人员范围

凡是对Drupal感兴趣的朋友均可以参加。

三、时间、地点

   时间:2016年2月27~28日

   地点: 北京市海淀区中关村南三街8号 中国科学院物理所D楼212会议室

四、其它事项

会议不收注册费,参会人员食宿自理

w020090915376737786485.gif

五、日程安排

gz818 提交于 28 December 2015

D7,我在当前主题文件template.php中添加了 rdsxbz_preprocess_region(&$variables, $hook) 函数

就想是访问 test/regionshow 时, region模板用 region--test-regionshow.tpl.php

if ($_GET['q'] == 'test/regionshow' && $variables['region'] == 'content') {

array_unshift($variables['theme_hook_suggestions'], 'region__test_regionshow');

}

调试看到 $variables['theme_hook_suggestions'] 内容是

theme_hook_suggestions=>Array
(
    [0] => region__test_regionshow
    [1] => region__content
)

我在当前主题目录下有两个文件

region--content.tpl.php

时光倒流 提交于 23 December 2015

我建立了一个tab page (node/nodeID/comments, 用于显示field comment, 也就是说,comment添加和显示将在该tab显示(比如:node/1/comments) 而不显示在node view page (比如: node/1).

问题是,当我在tab page添加comment并按save后,页面跳转到node view page (比如:node/1#comment-1), 而我想要的是按save后,页面留在tab page(如:node/1/comments)因为我是在tab page添加comment的。

我在core/module/comment/src/commentform.php找到function save, 但不知如何修改

$form_state->setRedirectUrl($uri)。

该问题我在http://drupal.stackexchange.com/questions/184529/change-the-page-to-which-users-are-redirected-after-saving-a-comment提交,目前还未找到具体办法。

各位大神请帮忙。

谢!

上海2016年1月30日《Drupal商业模式分享会》

本期主题:

Drupal商业模式分享会

报名地址:

https://groups.drupal.org/node/497933#signup

altima° 中国 提交于 17 December 2015

Job Duties

-Being responsible for delivering elegant and maintainable code on Drupal (Front-end & Back-end)

-Setting up Drupal installations, customizing interfaces, as well as developing specific modules

-Working closely with a cross-functional team of developers, designers, and project managers to produce high quality web applications

-Supporting presales teams by estimating the necessary workload for each development task

米粒之猪 提交于 17 December 2015

去年因为做一个项目,遇到向DRUPAL中导入EXCEL数据的问题,顺手写了FEEDS EXCEL模块教程。到目前为止,阅读量已有2000+,看来不少网友都遇到了这类需求。

然而,今天我想说的是,对不住大家了,我把大伙都引到沟里去了crying。鄙视一下我自己no

emal30 提交于 11 December 2015

模块开发中,遇到一个问题。输出页面没有页面类型。

function weixin_api_callback() {   $query = drupal_get_query_parameters();   if (checkSignature($query)) {     //首次调用验证成为开发者     if (isset($query['echostr'])) {       drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');       echo '<pre>'.$query['echostr'];       exit;     }     //回应信息     responseMsg();   } }

需要在:<head>中添加<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

drupal_add_http_header无效

订阅