跳转到主要内容
toto多背一公斤 提交于 20 April 2013

调整错误报告级别

Drupal 6.x版本中,在正式运行的站点中,忽略 E_NOTICE,E_STRICT,和 E_DEPRECATED 的notice级别错误。想要查看所有PHP开发或测试网站上的错误,你可以更改includes/common.inc文件。

<?php
  if ($errno & (E_ALL ^ E_DEPRECATED ^ E_NOTICE)) {
?>

改为:

<?php
  if ($errno & (E_ALL | E_STRICT)) {
?>

Drupal的7.x版中,可以给出任何错误级别的E_ALL报告,并允许PHP设置报告的错误级别,例如E_STRICT。在开发或测试站上,要查看所有PHP的错误,你可以在 .htaccess文件中进行设置:

php_value error_reporting -1

使用 isset() or !empty() 函数

如果你想测试一个变量的值,或数组元素,或对象的属性,你可能需要使用:

dororo80 提交于 19 April 2013

在书中看到:

You defined permissions in hook_permission(), but how are they enforced? Node modules can limit access to the node types they define using hook_node_access() . The superuser (user ID 1) will always bypass any access check, so this hook isn’t called in that case. If this hook is n’t defined for your node type, all access checks will fail, so only the superuser and those with “administer nodes” permissions will be able to create, edit, or delete content of that type. 自己翻译如下:

上海Drupal协同贡献聚会 - 2013年4月20日
转自drupal官网groups:http://groups.drupal.org/node/289713 时间: 2013-04-20 10:00 - 19:00 Asia/Shanghai 组织者: DYdave miloyz(两位是上海戴文的老大)

 

各位好!

东方龙马 提交于 18 April 2013

图片轮换效果在很多网站上都可以看到,如腾讯、新浪、搜狐等门户站,也有各种中小型的企业资讯站。而在Drupal下如何来实现这样的效果呢?其实,Drupal官网提供了非常多的图片轮换效果的模块,但是对于初学者来说,一直被选择哪个模块或者用哪种方式来实现困扰着。

简要列几个官网提供的图片轮换的模块:

http://drupal.org/project/views_slideshow

http://drupal.org/project/ddblock

http://drupal.org/project/ajax_slideshow    Demo   http://67.222.4.219/slideshow-front

东方龙马 提交于 15 April 2013

说明

本次分享的包含2个theme,其中drupalct是基主题(base theme),w3cplusResponsive是w3cplus.com目前正在使用的第四版主题,该主题基于drupalct这个基主题,所以如果你要使用w3cplusResponsive这款主题,请将drupalct、w3cplusResponsive这两款主题,下载并解压至“sites/all/themes”目录。

版本要求:drupal7.x。

第四版主题由为之倾力打造,在此表示衷心感谢!同时感谢大漠及其w3cplus团队分享这么好的主题。

 

相关链接

w3cplus网站:http://www.w3cplus.com

w3cplus第三版主题分享:http://drupalchina.cn/forum/1294.html

w3cplus第四版主题分享:http://drupalchina.cn/node/1817

标签
订阅