Method List

ActiveTable's API makes heavy use of #__call() method. The PHP manual explains #__call() as:

The magic method __call() allows to capture invocation of non existing methods. That way __call() can be used to implement user defined method handling that depends on the name of the actual method being called. This is for instance useful for proxy implementations. The arguments that were passed in the function will be defined as an array in the $arguments parameter. The value returned from the __call() method will be returned to the caller of the method.

So, methods that are called but not explicitly defined by the class or one of its ancestors are handed to #__call().

#get() Family

#set() Family

#findBy() Family

#grab() Family

CRUD

Miscellaneous