8889841cBackgroundAnimationManager/BlockBackgroundAnimationManager.php 0000644 00000003143 15051562202 0020653 0 ustar 00 model; } public function display() { $this->model = new ModelBackgroundAnimation($this); $this->renderTemplatePart('Index'); } public function displayTopBar() { $buttonCancel = new BlockButtonCancel($this); $buttonCancel->addClass('n2_fullscreen_editor__cancel'); $buttonCancel->display(); $buttonApply = new BlockButtonApply($this); $buttonApply->addClass('n2_fullscreen_editor__save'); $buttonApply->display(); } public function displayContent() { $model = $this->getModel(); Js::addFirstCode(" new _N2.BgAnimationManager({ setsIdentifier: '" . $model->getType() . "set', sets: " . json_encode($model->getSets()) . ", visuals: {}, ajaxUrl: '" . $this->createAjaxUrl(array('backgroundanimation/index')) . "' }); "); $model->renderForm(); } } BackgroundAnimationManager/Index.php 0000644 00000002143 15051562202 0013534 0 ustar 00