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

Class: Web_Event

Source Location: /web_site/web_event.class.php

Class Web_Event

Class Overview

Web Event

Web event occures when description of condition is met. Such condition is for example presence of some parameter in GET/POST

Located in /web_site/web_event.class.php [line 28]

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

Methods

[ Top ]
Descendants
Child Class Description
Web_Event_Simple Web_Event_Simple may contain single condition that have to be met in order event to be generated.
Web_Event_Composite Web_Event_Composite is intended to contain 2 or more Web_Event_Simple It's contition is met if conditions of all Web_Events_Simple are met

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

Inherited From Event

Event::$name

Inherited From Event

Event::__construct()
Event::get_name()
Gets the event name
Event::set_name()
Sets the event name

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 ]
Method Summary
void   get_capture()   Returns label of the capture
void   is_it_me()   Checks if event condition is met

[ Top ]
Methods
get_capture  [line 40]

  void get_capture( )

Returns label of the capture


API Tags:
Abstract:  
Access:  public


Redefined in descendants as:

[ Top ]
is_it_me  [line 34]

  void is_it_me( Web_Context $context  )

Checks if event condition is met

Parameters:
Web_Context   $context: 

API Tags:
Abstract:  
Access:  public


Redefined in descendants as:

[ Top ]