#6080: better interaction between controllers and plugins
------------------------------------------------+---------------------------
Reporter: Evertt | Type: Enhancement
Status: new | Priority: High
Milestone: 1.2.x.x | Component: General
Version: 1.2 Final | Severity: Normal
Keywords: interaction controllers plugins | Php_version: n/a
Cake_version: |
------------------------------------------------+---------------------------
I would be cool if there would be something better than requestAction()
So that if you would want something from another controller you'd just
need to do something like this:
$this->controllername->action($args);
or with plugins
$this->pluginname->controllername->action($args);
or with a plugin that already has a standard controller:
$this->pluginname->action($args);
and if you want all plugins to respond (or all controllers)
$this->all->action($args);
or
$this->all->controllername->action($args);
Or some other way of typing that, you know what I mean. That would help a
lot in building controllers and plugins that can interact with eachother..
--
Ticket URL: <https://trac.cakephp.org/ticket/6080>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC.
Our primary goal is to provide a structured framework that enables PHP users at
all levels to rapidly develop robust web applications, without any loss to
flexibility.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"tickets cakephp" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tickets-cakephp?hl=en
-~----------~----~----~----~------~----~------~--~---