Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // View Helper
- /**
- * @var \DMF\FluxGalleria\Controller\GalleriaController
- * @inject
- */
- protected $galleriaController;
- /**
- * Render method
- *
- * @return string
- */
- public function render() {
- $settings['items']['1']['item'] = array(
- 'type' => 5,
- 'picasa_method' => 'useralbum',
- );
- $this->galleriaController->indexAction($settings);
- }
- // Action
- public function indexAction($settings = array()) {
- if (!empty($settings)) {
- $this->settings = $this->configurationManager->getConfiguration(
- ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS, 'fluxgalleria', 'frontend'
- );
- $this->configurationManager->setConfiguration(
- $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK, 'fluxgalleria', 'frontend')
- );
- $this->settings = array_merge($this->settings, $settings);
- }
- $this->view->assign('settings', $this->settings);
- (...)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement