跳转到主要内容
东方龙马 提交于 18 October 2014

句子迷 - 简介

句子迷logo句子迷网站创建于2011年3月29日,是专注于佳句美句的发布、收藏和分享交流社区。

在这里,您可以轻松发布和收藏您喜欢的句子,和同好谈论感兴趣的佳句妙语、诗词歌赋。

在每一句感动你我的文字后面,有着我们真挚的情感和故事,有着我们一起的倾诉和聆听。

您可以把句子迷网当成您的私人句子摘抄本,有好的句子就记录或点击喜欢收藏下来。

juzimi.jpg

该网站基于Drupal6搭建,功能比较丰富,不错的站点。

sina_猫学乖乖 提交于 17 October 2014

用于判断移动客户端跳转的模块.

安装完成后,进入 admin/config/system/simple_mobile_redirect

然后一次设置相关页面的手机站点 url

当站点为 www.site.com/path/?nomobi=true   时,通过设置一个cookie来让访问者始终停留在PC页面

当站点为 www.site.com/clearsimplemobileredirect  是,该模块起作用,判断相关客户端进行对应的站点跳转

TimYao 提交于 17 October 2014

最近在OSTraining我们做了针对Drupal Commerce的全面的攻略。你可以观看30节课程的视频教程和下载“Building E-commerce Sites with Drupal Commerce”电子书。

然而,Drupal Commerce是一个企业级的解决方案,但是大多数OSTraining的学员们可能需要的只是一个简单的电子商务方案。

所以对这些需求,我们经常推荐Payment模块,它可以很轻松的把电子商务的功能添加到你的网站内容里。

Payment模块支持差不多六个支付网关(PayPal, Stripe, iDEAL, Authorize.net, Ogone, Rabo OmniKassa)。

在这个教程里,我们将展示如何使用Payment模块,并且启用Paypal支付。

 

dustise 提交于 17 October 2014

Drupal 8的目标之一就是开箱即用,Drupal核心现在有了一套ReST API

这使得用户在使用Drupal 8的各种功能输入内容之后,不仅可以把内容呈现到标准的Drupal前端中,而且还可以输出给移动应用以及其他的能使用JSON数据的应用之中。

ReST

Drupal 8使用两个Module来提供ReST API。rest模块,为Angular JS之类的能够使用’Accept: application/json’头提供最简单的响应。他的工作很简单,只是Drupal 8 Entity的序列化输出。

下面是一个JSON响应的例子

希望之翼 提交于 17 October 2014

Drupal中国每周翻译任务认领,有时间有兴趣参与翻译的,可直接编辑本wiki,在认领条目后加入自己的名字。

翻译完后,可直接发布到自己网站、博客,或者Drupal中国上面。经常参与翻译的朋友,后续社区会记录并发放适当嘉奖,欢迎参与!

前人栽树,后人乘凉,参与翻译,乐在其中!

Constructive Conflict Resolution in the Drupal Community(took by Tim)

http://www.previousnext.com.au/blog/constructive-conflict-resolution-drupal-community

The Challenge to Innovation

http://www.metaltoad.com/blog/challenge-innovation

Are you Giving Back?

http://www.lightsky.com/blog/are-you-giving-back  (蓝眼泪)

上海Drupal协同贡献聚会 - 2014年10月18日

报名地址https://groups.drupal.org/node/439483#signup-form

时间:2014年10月18日10:00 - 19:00

地点:中山北路900号(近普善路)加禾商务中心2号楼311室

大家好!

很期待在Drupal 10月聚会上跟各位见面。

learningxm 提交于 16 October 2014
In the 'page--landing.tpl.php' file, the menu is created with:
//--页面菜单添加新窗口打开的链接
<div id="menu">
<?php print $navigation; ?>
</div>

<?php
A quick way would be to use jQuery to rewrite the anchor tags in the menu with the target attribute
//--方法一,使用jquery
$( '.page--landing [menu link selector] ).attr( 'target','_blank' );

Using the Drupal API
//方法二:使用hook_menu_link_alert
function MODULE/THEMENAME_menu_link_alter(&$item)
{
   if (some logic that sets it only for the desired paths/context)
   {
     $item['options']['attributes']['target'] = '_blank';
   }
}

an 
learningxm 提交于 16 October 2014
<?php
/**
 * Implementation of hook_enable().
 */
function addexample_enable() {
  // Check if our field is not already created.
  if (!field_info_field('field_myfield')) {//--字段名称需要小写
    $field = array(
        'field_name' => 'field_myfield', 
        'type' => 'text', 
    );
    field_create_field($field);

    // Create the instance on the bundle.
    $instance = array(
        'field_name' => 'field_myfield', 
        'entity_type' => 'user', 
        'label' => 'My Field Name', 
        'bundle' => 'user', 
        // If you don't set the "required" property t
Drupal 8.0.0 Beta2 发布

Drupal 8.0.0 Beta2 在美国当地时间2014年10月15日下午5:03发布了。

该版本是Drupal官方发布的第2个Drupal8 Beta版本,上一个Drupal8 版本是Drupal8 Beta1,发布于2014年10月1日,相隔仅有14天的时间。

这一版本对Drupal8 Beta1 修复:242个问题,详细参见官网的发布说明(Release notes): https://www.drupal.org/node/2357303,包括一个安全漏洞问题: SA-CORE-2014-005

Drupal 8 Beta 版不适合没有技术背景的人和生产环境使用,因为在目前仍有116个较严重的问题亟待解决,解决所有这些问题将会发布RC版(release candidate,候选版)。

订阅