public function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$action = $this->_vars->get('action');
$account = $this->_vars->get('account');
function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$account = $this->_vars->get('account');
$devid = $this->_vars->get('devid');
$shout->devices->deleteDevice($account, $devid);
*/
function __construct(&$vars)
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
-
-
$account = $_SESSION['shout']['curaccount'];
$action = $vars->get('action');
if ($action == 'edit') {
*/
function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$extension = $this->_vars->get('extension');
$account = $this->_vars->get('account');
function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$account = $this->_vars->get('account');
$extension = $this->_vars->get('extension');
$shout->extensions->deleteExtension($account, $extension);
public function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$account = $_SESSION['shout']['curaccount'];
function execute()
{
- $shout = $GLOBALS['injector']->getInstance('shout', 'application');
+ $shout = $GLOBALS['registry']->getApiInstance('shout', 'application');
$account = $this->_vars->get('account');
$menu = $this->_vars->get('menu');
$shout->devices->deleteMenu($account, $menu);