search
top

How to use THIS in THAT and then some

Some common questions on IRC: How to use a model in a component $model = ClassRegistry::init('ModelName'); $result = $model->find('...'); How to extend a core helper App::import('Helper', 'Text'); class AppTextHelper extends TextHelper { // ... your code } How to extend a core component App::import('Component', 'Auth'); class AppAuthComponent extends AuthComponent { // ... your code } How to get... read more
top