Class: Doctrine_Event
Source Location: /Doctrine/Event.phpClass Doctrine_Event
Class Overview
Doctrine_Event Located in /Doctrine/Event.php [line 32] Author(s):
|
[ Top ]
Constant Summary
Property Summary
integer | $_code | |
integer | $_endedMicrotime | |
mixed | $_invoker | |
array | $_options | |
string | $_params | |
string | $_query | |
integer | $_startedMicrotime |
[ Top ]
Method Summary
Doctrine_Event | __construct() | constructor |
Doctrine_Event | end() | end ends the internal timer of this event |
integer | getCode() | getCode |
mixed | getElapsedSecs() | Get the elapsed time (in microseconds) that the event ran. If the event has not yet ended, return false. |
Doctrine_Connection|Doctrine_Connection_Statement| | getInvoker() | getInvoker returns the handler that invoked this event |
string | getName() | getName returns the name of this event |
array | getParams() | getParams returns the parameters of the query |
string | getQuery() | getQuery |
boolean | hasEnded() | hasEnded whether or not this event has ended |
Doctrine_Event | skipOperation() | skipOperation skips the next operation an alias for __set('skipOperation', true) |
Doctrine_Event | start() | start starts the internal timer of this event |
mixed | __get() | getOption returns the value of an option |
Doctrine_Event | __set() | setOption sets the value of an option |
[ Top ]
Methods
Constructor __construct [line 101]
|
constructor
Parameters:integer | $code: | the event code |
string | $query: | the sql query associated with this event (if any) |
Doctrine_Connection|Doctrine_Connection_Statement| | $invoker: | |
$params: |
API Tags:
Access: | public |
[ Top ]
end [line 251]
|
end ends the internal timer of this event
API Tags:
Return: | this object |
Access: | public |
[ Top ]
getCode [line 179]
|
getCode
API Tags:
Return: | returns the code associated with this event |
Access: | public |
[ Top ]
getElapsedSecs [line 284]
|
Get the elapsed time (in microseconds) that the event ran. If the event has not yet ended, return false.
API Tags:
Access: | public |
[ Top ]
getInvoker [line 264]
|
getInvoker returns the handler that invoked this event
API Tags:
Return: | Doctrine_Connection_UnitOfWork|Doctrine_Transaction the handler that invoked this event |
Access: | public |
[ Top ]
getName [line 123]
|
getName returns the name of this event
API Tags:
Return: | the name of this event |
Access: | public |
[ Top ]
getParams [line 274]
|
getParams returns the parameters of the query
API Tags:
Return: | parameters of the query |
Access: | public |
[ Top ]
getQuery [line 113]
|
getQuery
API Tags:
Return: | returns the query associated with this event (if any) |
Access: | public |
[ Top ]
hasEnded [line 241]
|
hasEnded whether or not this event has ended
API Tags:
Access: | public |
[ Top ]
skipOperation [line 205]
|
skipOperation skips the next operation an alias for __set('skipOperation', true)
API Tags:
Return: | this object |
Access: | public |
[ Top ]
start [line 231]
|
start starts the internal timer of this event
API Tags:
Return: | this object |
Access: | public |
[ Top ]
__get [line 190]
|
getOption returns the value of an option
Parameters:string | $option: | the name of the option |
API Tags:
Access: | public |
[ Top ]
__set [line 219]
|
setOption sets the value of an option
Parameters:string | $option: | the name of the option |
mixed | $value: | the value of the given option |
API Tags:
Return: | this object |
Access: | public |
[ Top ]