tangra logo
   
[ class tree: tangra_lib ] [ index: tangra_lib ] [ all elements ]
 

Class: Event

Source Location: /core/event.class.php

Class Event

Class Overview

Base class for Event classes family.

Located in /core/event.class.php [line 19]

Tangra_Class
   |
   --Event
Author(s):
API Tags:
See:  Web_Event, Web_Event_Simple
Abstract:  

Properties

Methods

[ Top ]
Descendants
Child Class Description
Web_Event Web Event

[ Top ]
Inherited Properties, Constants, and Methods
Inherited Properties Inherited Methods Inherited Constants

Inherited From Tangra_Class

Tangra_Class::get_class_name()
Alias of get_class(). Exist because of historical reasons.
Tangra_Class::__set()
Overides PHP built-in method and just throws exception if called. Purpose - to "forbid" autosetting of nonexisting class properties.

[ Top ]
Property Summary
string   $name   Name of the event

[ Top ]
Method Summary
Event   __construct()  
string   get_name()   Gets the event name
void   set_name()   Sets the event name

[ Top ]
Properties
string   $name [line 26]

Name of the event

API Tags:
Access:  private


[ Top ]
Methods
Constructor __construct  [line 32]

  Event __construct( string $name  )

Parameters:
string   $name:  - name of the event


Redefined in descendants as:

[ Top ]
get_name  [line 52]

  string get_name( )

Gets the event name


API Tags:
Access:  public


[ Top ]
set_name  [line 42]

  void set_name( string $name  )

Sets the event name

Parameters:
string   $name: 

API Tags:
Access:  public


[ Top ]