2016首届Drupal中国大会
各位朋友:
Drupal做为世界最顶级的开源内容管理系统,内容管理框架和企业应用集成平台之一,在政府、高科技、高等教育、金融、生命科学行业、出版发行、媒体娱乐等各行各业有着广泛的应用。
为了更好的促进Drupal在中国的发展。为此,特举办首届Drupal中国大会。
一、 举办单位
中国科学院物理研究所图书馆
北京亚艾元软件有限责任公司
二、 参加人员范围
凡是对Drupal感兴趣的朋友均可以参加。
三、时间、地点
时间:2016年2月27~28日
地点: 北京市海淀区中关村南三街8号 中国科学院物理所D楼212会议室
四、其它事项
会议不收注册费,参会人员食宿自理
五、日程安排
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
我建立了一个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提交,目前还未找到具体办法。
各位大神请帮忙。
谢!
因为Drupal6用的simpleviews模块,升级到Drupal7后没有这个模块了,网站有些板块的数据显示不了了,烦请高手解答!谢谢
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
去年因为做一个项目,遇到向DRUPAL中导入EXCEL数据的问题,顺手写了FEEDS EXCEL模块教程。到目前为止,阅读量已有2000+,看来不少网友都遇到了这类需求。
然而,今天我想说的是,对不住大家了,我把大伙都引到沟里去了。鄙视一下我自己
我有一个下载站,希望有高手帮我开发一个social locker模块,用户只有将页面分享到social网站上,才可以下载,可付费,具体加987268718
模块开发中,遇到一个问题。输出页面没有页面类型。
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无效