Newer
Older
* Piwik - free/libre analytics platform
* @link http://piwik.org
mattab
a validé
namespace Piwik\Plugins\Widgetize;
use Piwik\FrontController;
use Piwik\Piwik;
use Piwik\View;
class Controller extends \Piwik\Plugin\Controller
$view = new View('@Widgetize/index');
$this->setGeneralVariablesView($view);
{
$this->init();
Thomas Steur
a validé
$controllerName = Common::getRequestVar('moduleToWidgetize');
Thomas Steur
a validé
$actionName = Common::getRequestVar('actionToWidgetize');
if ($controllerName == 'API') {
throw new \Exception("Widgetizing API requests is not supported for security reasons. Please change query parameter 'moduleToWidgetize'.");
}
$shouldEmbedEmpty = false;
/**
* Triggered to detect whether a widgetized report should be wrapped in the widgetized HTML or whether only
* the rendered output of the controller/action should be printed. Set `$shouldEmbedEmpty` to `true` if
* your widget renders the full HTML itself.
*
* **Example**
*
* public function embedIframeEmpty(&$shouldEmbedEmpty, $controllerName, $actionName)
* {
* if ($controllerName == 'Dashboard' && $actionName == 'index') {
* $shouldEmbedEmpty = true;
* }
* }
*
* @param string &$shouldEmbedEmpty Defines whether the iframe should be embedded empty or wrapped within the widgetized html.
* @param string $controllerName The name of the controller that will be executed.
* @param string $actionName The name of the action within the controller that will be executed.
*/
Piwik::postEvent('Widgetize.shouldEmbedIframeEmpty', array(&$shouldEmbedEmpty, $controllerName, $actionName));
if ($shouldEmbedEmpty) {
$view = new View('@Widgetize/iframe_empty');
} else {
$view = new View('@Widgetize/iframe');
Thomas Steur
a validé
$this->setGeneralVariablesView($view);
$view->setXFrameOptions('allow');
Thomas Steur
a validé
$view->content = FrontController::getInstance()->fetchDispatch($controllerName, $actionName);