我们成功申请为2013年Drupal全球培训日培训者,将在3月15日上午10点至下午5点免费提供第一场培训。
培训面向Drupal爱好者,不论有无Drupal 开发/应用经验 (对PHP/HTML/CSS/JS知识不作规定)都可以参加。
我们的主要目的是为参加者提供所需信息,向他们传达有关Drupal特性及功能的各种知识,希望帮助他们找到工作中可能的Drupal应用。我们复制了之前的成功经验,由资深Drupal 培训指导向培训者提供主题为Drupal简介的全天培训。
在此邀请各位希望由经验丰富的Drupaler带领快速入门的Drupal爱好者加入到我们精心安排的培训中来。
从2012年12月14日培训日获得一些培训经验之后,我们改良了培训材料,增加了培训者可能会感兴趣的话题。
请带上便携式电脑。现场将提供座位和咖啡饮料。
有任何问题、意见或建议,欢迎留言。
谢谢您的参与!
活动安排
此次活动将在周五,2013年3月15日,10:00 -17:00举行。Drupal全球培训日每年仅举办四次,不要错过机会立即报名哦!
日期及时间: 周五,2013年3月15日,10:00 -17:00
地点: (与每月的workshop相同):中山北路900号(近普善路)加禾商务中心2号楼311室Room 311, Building 2, Number 900, North Zhongshan road
地图: 谷歌地图,百度地图
交通路线
出租车: 中山北路 // 普善路 | zhong shan bei lu // pu shan lu
地铁:1号线中山北路站下,5步行5分钟。谷歌地图,百度地图。
语言:中英文(默认中文,如果您需要英文讲授请事先告知。)
花费: 无。请自备电脑或其他材料。
联系人:
任何时间您都可以联系我们,中文或英文皆可。
联系人: Yvonne Chen (联系她),DYdave (联系他)。
下一场培训:周五,2013年6月14日,10:00 - 17:00。
请直接在培训活动说明页报名!
We are glad to let you know we will be taking part to this year's Global Training Days, with our first edition of 2013 on March 15, from 10am to 5pm, FREE of charge.
The training is designed for anyone who would be interested in Drupal, with or without Drupal development/application experience (PHP/HTML/CSS/JS knowledge is not required).
Our main objective would be to provide enough information and transfer enough knowledge to participants about Drupal capabilities and perhaps try finding a potential field of application in their professional areas.
We will be repeating our previous very positive experience with a full day training program: Intro to Drupal, lead by one of our senior Drupal trainers.
We would like to invite anybody that would be curious or have an interest in discovering Drupal and would like to be driven by experienced professionals in order to take a fast start, on the right track, with the right resources.
Having gained more training experience over the past sessions (in particular, Dec 14th 2012), we were able to further refine over time our materials and tutorials for this upcoming edition by adding a few more interesting topics.
Just bring your laptop for more convenience. Seats and coffee will be offered.
We would greatly appreciate any of your questions, comments, feedbacks, objections, ideas, recommendations or concerns on any aspects of this event or its organization and would surely be glad to provide more information.
Thanks for getting involved! We're looking forward to having you at the training!
Event's details:
This session will be held on Friday, March 15 2013, from 10:00 to 17:00 at the address indicated below, is freely open to participants and we invite you to sign up now. This only happens 4 times a year, so book yourself a spot before they go!
Date and Time: Friday, March 15 2013, from 10:00 to 17:00
Location (same as for monthly workshops):
中山北路900号(近普善路)加禾商务中心2号楼311室
Room 311, Building 2, Number 900, North Zhongshan road
Maps: Map on Google, Map on Baidu
How to get there?
Taxi crossroad: 中山北路 // 普善路 | zhong shan bei lu // pu shan lu
Subway: line 1, station: North Zhong Shan Road / 中山北路.
5 minutes walk from the station, Directions on Google, Directions on Baidu.
Language: Chinese and English (Training is considered by default to be in Chinese. If you would like to have it carried in English please let us know in advance).
Cost: None other than your own material/laptop.
Contacts:
Feel free to contact us at anytime, in Chinese or English, we would be glad to answer your questions or provide more information.
Users: Yvonne Chen (contact form), DYdave (contact form).
Next session: Friday, June 14 2013, from 10:00 to 17:00.
Please sign-up directly on the event's page.
| Attachment | Size |
|---|---|
| Drupal Training Day Shanghai, Mar 15 2013, Detailed Curriculum | 91.86 KB |
| Drupal上海培训课程目录 2013年3月15日 | 129.97 KB |


Comments
N00b sitting in
I know nothing about Drupal; i Prefer in English.
Any companies out there who construct websites to give me a quote.
Downloaded the Drupal File http://drupal.org/project/drupal but have no idea how to install the tar.gz file ?
Thanks for signup!
Thanks for signup and for your feedback! We could surely provide training to Drupal freshmen (like you) in English.
Before installing Drupal, please review the system requirements and the Installation Guide.
Drupalers 在上海
listen to your heart
Drupal performance
Hi, i am a Java programmer and new to Drupal. I've read some introductory materials about Drupal. It seems Drupal defined a lot of hooks and will discover and execute the hooks implemented by custom modules. A concern about performance: when a large Drupal site uses a lot of modules and implemented a lot of hooks, isn't this a big hurt the the performance? And since the mechanism is inherent in Drupal, it seems there is no way to overcome this.
Any comments?
Drupal performance & hook解析
这是一个老生常谈的问题。
hook机制是drupal最具吸引力的特性。 Hook机制赋予drupal强大的灵活性和扩展性。
如果要使用drupal做开发,hook是必须要跨过去的一道坎。
因为hook对drupal如此重要,当然会对hook有优化的方案。那就是drupal的cache(缓存)机制。
在大多数情况下,hook是通过module_implements或者module_invoke_all这个函数来执行的,以下是函数原型:
http://api.drupal.org/api/drupal/includes%21module.inc/function/module_i...
可以看到,在默认的情况下,drupal会对hook做缓存,那么将来执行hook的时候,缓存机制会有效的提高性能。
(PS: drupal 有几个特殊的hook,比如hook_init, hook_exit, hook_cron等是通过module_invoke_all来
执行的, module_invoke_all函数原型如下:
http://api.drupal.org/api/drupal/includes%21module.inc/function/module_i...
这些hook,没有使用drupal的缓存机制,因此编写代码的时候,需要注意。)
相比较而言,hook机制对drupal灵活性和扩展性上带来的优势,会大于其对性能的影响所带来的劣势;
综合考虑,hook造成的性能的损耗,通过缓存系统得到巧妙的弥补,从而在性能和扩展方面得到良好的平衡。
因此hook机制得以保留。
IDE
谢谢。另外,php的IDE能否推荐一个?我自己发现了有Zend(界面和EClipse一样)和PhpStorm。
NetBeans
wampp + NetBeans 安装方便,代码调试也很方便~
当然不限于此,还有很多。。。
Zend Studio
Zend Studio 在windows下面用比较舒服,如果是Linux可以使用Netbeans
www.drupalmodule.cn
www.xiukun.me
这个看个人习惯了。其实我用vim比较多。
这个看个人习惯了。其实我用vim比较多。
http://drupal.org/node/147789
这里是一篇关于drupal开发工具选择的介绍文章。应该会对你有所帮助。
Yay. Vote for vim!
Yay. Vote for vim!
不Eclipse,不drupal
不Eclipse,不drupal
Confirmation in Going to the Event!
I'll be there "jianfei chen" or "Yvonne Chen" I've been to your office once and met "DYdave" through "SkyRedWang"
Great you are joining us
Great you are joining us again! Thanks for your feedback!
Drupalers 在上海
listen to your heart
IDE Debug
大家在debug时有遇到如下情况吗:
在断点处,所用全局和局部变量的值都可以显示出来,而调用栈的某些地方,只能显示全局变量的值,局部变量的值根本没有,用Evaluate也没有值。
我是在phpStorm+XDebug下试的。不知是否其他的IDE也有类似的情况或者XDebug可以配置参数?谢谢
“过气”培训的新鲜出炉小结:
“过气”培训的新鲜出炉小结: https://association.drupal.org/node/17993
下一场培训在召唤您 ~ http://groups.drupal.org/node/289728
Drupalers 在上海
listen to your heart