您在這裡

求救 關於模組開發~如何加入權限控制

davi1457's 的頭像
davi1457 在 2009-10-19 (週一) 01:45 發表

如題

小弟目前正在學模組開發

目前只寫了一個區塊放連外的連結

想先試試控制權限來限制模組顯示與否

試了user_access 跟hook perm

都沒作用~就連登出後還是顯示在頁面上~

希望能得到指導~謝謝

這是目前寫的----------------------------------

<?php
// $Id$
/**
* @file
* Module for Test Page
* This module provides block content retrieved from a
* Test Page.
* @Test Page
*/

/**
* Implementation of hook_block()
*/

function testpage_perm() {
return array('view testpage');
}// function testpage_perm

function testpage_block($op='list', $delta=0, $edit=array()) {
switch ($op) {
case 'list':
$blocks[0]['info'] = t('Test Page');
return $blocks;
case 'view':
$blocks['subject'] = t('On the Test Page');
$blocks['content'] = t('TEST PAGE');
return $blocks;
}
}