Sorun Drupal 5 bir merhaba dünya modül yaratırken var

0 Cevap php

Ben bir mudule oluşturmak için yaptığımız adımları Here're:

  1. bir dizin groups sites/all/modules altında oluşturduğunuz
  2. yukarıdaki dizinde groups, iki dosya groups.module ve groups.info oluşturmak

Içeriği groups.info:

; $Id: groups.info,v 1.3 2006/11/21 20:55:36 dries Exp $
name = groups
description = Test Groups Listings.
package = "test groups"

version = "5.10"
project = "ed_groups"
datestamp = "1218672307"

Içeriği groups.module:

<?php
function groups_menu($may_cache)
{
    $items = array();
    $items[] = array(
        'path' => 'test_menu',
        'type' => MENU_CALLBACK,
        'callback' => 'groups_list',
        'title' => t('All Group Listing')
    );
}

function groups_list()
{
    return 'helloworld';
}

Ben ziyaret ederken bir ayyy (404) sayfası var site.com/test_menu

Yukarıdaki sorunun ne nokta olabilir?

0 Cevap