I would like to know if it is acceptable/preferred to use self::method() and parent::method() when working in php classes.
You can use $this->method() but $this-> can al
I think self:: is used generally for static functions and properties.
I use Kohana, and perhaps the controllers are made static.