欢迎各位兄弟 发布技术文章
这里的技术是共享的
下载地址:
http://zhupou.cn/download/views-6.x-2.5-zh-hans.rar
安装了Views的汉化包后,我想,可能加快很多人学习使用Views的速度。来自 http://www.thinkindrupal.com/node/1050
1)php知识部分 var_dump();die();print_r();die();2)drupal常见模块的应用3)具体开发模块的实战4)课外总结能修改现成的就修改现成的模块,不能的话,再自己开发常见模块1)cck,views,panels2)phpmailer模块,mimemail模块,本地邮件服务器搭建3)站点订阅simplenews模块,notifications模块4)i18n模块5)站点分享模块service_links模块6)工作招聘求职:jobsearch模块7)菜单导航系列:nice_menus模块8)手机显示系列:mobile_tools模块9)站点搜索系列:custom_search模块,apache-solr模块10)站点样式显示:admin模块及一些主题11)其它杂类 block class模块等会用到的东西1)drupal API2)php 常用语法和函数3)sql知识4)对整个课程中的技巧进行梳理总结5)模块开发的个人建议6)项目实战中遇到的问题(基于个人经验)
/*加背景颜色 不用边框也可以*/ div { border:2px solid; border-radius:25px; -moz-border-radius:25px; /* Old Firefox */ }
向 div 元素添加圆角:(好像对table有点问题 ,对div没有问题)
/*加背景颜色 不用边框也可以*/
请问各位用过
drupal论坛想设置版主怎么做呢?
下面是drupal6移除或禁用css file的方法function phptemplate_preprocess_page(&$vars){$css = $vars['css'];unset($css['all']['module']['modules/system/system.css']);unset($css['all']['module']['modules/system/defaults.css']);$vars['styles'] = drupal_get_css($css);}//下面是drupal6移除css和js的方法function phptemplate_preprocess_page(&$vars) {//移除css
下面是drupal6移除或禁用css file的方法function phptemplate_preprocess_page(&$vars){$css = $vars['css'];unset($css['all']['module']['modules/system/system.css']);unset($css['all']['module']['modules/system/defaults.css']);$vars['styles'] = drupal_get_css($css);}
function phptemplate_preprocess_page(&$vars) {//移除css
theme_menu_local_tasks() gets the current page's local tasks and passes them to
theme_menu_local_tasks()
如题,覆写quick tab是block吗?
命名规则又是怎样的
http://www.docin.com/p-111086267.html
这几天公司要用到用户积分的功能,现在一般的站点都有类似用户积分系统的概念,而drupal的userpoints模块可以给我们提供这样的功能。由于userpoints模块本身只提供了一个基本功能和api,所以需要一些特殊的功能,我们需要自己定制。
1)下载 https://drupal.org/project/answers安装 模块 及依赖模块2)进行设置 admin/settings/answers3)到 views中进行查看 自动创建了哪些视图还有 默认 节点 view: question_answers (Answers) Node content4)看自动创建了哪些内容类型5)可以看看 answers模块文件夹下的answers.readme.txt6)到 admin/settings/voteupdown 设置一下投票7)为了使用已解决 未解决的功能 还要安培训 best answer模块安装它后 到views中就可以看到有了已解决未解决的views 默认 节点 view: best_answer_all_questions (Answers)
drupal6 调用的主题函数: