/[drupal]/contributions/modules/signup/signup_event_none.inc
ViewVC logotype

Diff of /contributions/modules/signup/signup_event_none.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1, Tue Jul 31 00:08:31 2007 UTC revision 1.2, Fri Aug 1 07:51:02 2008 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id$  // $Id: signup_event_none.inc,v 1.1 2007/07/31 00:08:31 dww Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 26  function _signup_event_completed($node) Line 26  function _signup_event_completed($node)
26  function signup_format_date($node) {  function signup_format_date($node) {
27    return t('[Untimed]');    return t('[Untimed]');
28  }  }
29    
30    /**
31     * Is this node type date-enabled?
32     *
33     * @return Bool: Always return FALSE in this backend
34     */
35    function signup_node_type_has_date($type) {
36      return FALSE;
37    }
38    
39    /**
40     * Is this specific node date-enabled?
41     *
42     * @return Bool: Always return FALSE in this backend
43     */
44    function signup_node_has_date($node) {
45      return FALSE;
46    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.2