book

新書:Selling online with Drupal e-Commerce

想用 Drupal 來開網路商店? 當然可以!這本以 e-Commerce 模組為基礎的 Drupal 書籍,將介紹如何處理資訊流、金流、物流,替你的 Drupal 網站帶來$$

新聞來源 | 書籍網址 | 本書目錄


新書:Building Powerful and Robust Websites with Drupal 6

Building Powerful and Robust Websites with Drupal 6早在Drupal 4.7的時候,David Mercer所寫的《Drupal: Creating Blogs, Forums, Portals, and Community Websites》廣受好評。他在原有的基礎上,為Drupal 6又再寫了一本。內容包括:

  • 規劃、考量網站建設的各種因素
  • 安裝、設定Drupal開發環境
  • 安裝模組、增添網站功能
  • 控制、管理網站內容
  • 處理安全問題、使用者、權限管理
  • 增加有用的新特色、學習進階技巧
  • 部署、管理、維護網站

本書可供初級和中級Druper參考。

出版社網站:http://www.packtpub.com/drupal-6-create-powerful-websites/book
作者的聲明:New Drupal Book Published: Building Powerful and Robust Websites with Drupal 6 by David Mercer

 繼續閱讀 »

Drupal新書:Practical Drupal

pratical drupal
Practical Drupal: Evaluating and Using a Web Content Management System
by Niall Mansfield

 繼續閱讀 »

O'Reilly Drupal Book!!!

看來要明年才會出,希望有中文版同步上市XD

Lullabot - We're Writing the O'Reilly Drupal Book!!!

Practical Drupal will be a project-based, guided tour of the best contributed modules, along with instructions about how to combine them to make useful websites. The topics covered will be appropriate for everyone from the complete newbie who knows nothing about Drupal (we'll have a chapter to get you up to speed), to the site builder who's done a couple Drupal sites and wants to know how to take their skills to the next level, to the uber-hacker who wants to know a couple of advanced tricks. This how-to/recipe-style book will focus on several common types of Drupal sites and offer step-by-step instructions on how to build them from scratch.

Drupal 開發書籍 - Pro Drupal Development

國外有本新書上市,期待國內也能有這類書籍出現!

Pro Drupal Development -

1. How Drupal Works
2. Writing a Module
3. Module-Specific Settings
4. The Menu System

 繼續閱讀 »

add child page(加入子頁面)對應的權限?

我希望使用者可以自由新增book的子頁面,
而且我也已經打開了所有有關book的權限加上node的"access content"權限,
可是在新增子頁面時還是會顯示access denied。

新增子頁面的位址:node/add/book/parent/*
我去查了一下book_menu函式,
這個位址應該是對應到node/add/book這個path,所需要的權限是'create book pages',

 繼續閱讀 »

Drupal 書籍

有人買那那本 drupal 原文書來看過嗎? 很好奇內容會寫啥 :p

Drupal工具書又一本

一本英文的工具書新出爐,定價24.99歐元:
Drupal: Creating Blogs, Forums, Portals, and Community Websites.

書籍官網上有詳細的內容目錄,可以看看他們著重Drupal的哪些部份。

可參考Drupal.org的介紹

顯示文件(book)的目錄

前陣子Jimmy給我一個程式碼,可以用來顯示某文件底下的目錄(b.parent是該文件的nid):

<div class="subpage">
<?php
$result = db_query('SELECT n.nid, n.title, b.parent FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE b.parent = 2 order by n.changed');
while( $n = db_fetch_object($result)){

 繼續閱讀 »
RSS feed