0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Services
/
Module
/
[
Home
]
File: Controller.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: Controller.php 46965 2013-08-02 19:05:59Z jonnybradley $ class Services_Module_Controller { function action_execute($input) { $modlib = TikiLib::lib('mod'); $modname = $input->module->text(); if ($modname) { $params = (array) $input->params->array(); $moduleId = $input->moduleId->int(); if ($moduleId) { $module_reference = $modlib->get_assigned_module($moduleId); TikiLib::parse_str($module_reference['params'], $module_reference['params']); $module_reference['params'] = array_merge($params, $module_reference['params']); } else { $module_reference = array( 'name' => $modname, 'params' => $params, ); } $result = $modlib->execute_module($module_reference); } return array('html' => $result); } }