Advertisement
Guest User

Untitled

a guest
Jul 14th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.06 KB | None | 0 0
  1. // View Helper
  2.  
  3.     /**
  4.      * @var \DMF\FluxGalleria\Controller\GalleriaController
  5.      * @inject
  6.      */
  7.     protected $galleriaController;
  8.  
  9.     /**
  10.      * Render method
  11.      *
  12.      * @return string
  13.      */
  14.     public function render() {
  15.  
  16.         $settings['items']['1']['item'] = array(
  17.             'type'          => 5,
  18.             'picasa_method' => 'useralbum',
  19.             'picasa'        => 'useralbum:[email protected]/branchearchitektur'
  20.         );
  21.  
  22.         $this->galleriaController->indexAction($settings);
  23.     }
  24.  
  25.  
  26.  
  27. // Action
  28.  
  29.     public function indexAction($settings = array()) {
  30.  
  31.         if (!empty($settings)) {
  32.             $this->settings = $this->configurationManager->getConfiguration(
  33.                 ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS, 'fluxgalleria', 'frontend'
  34.             );
  35.  
  36.             $this->configurationManager->setConfiguration(
  37.                 $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK, 'fluxgalleria', 'frontend')
  38.             );
  39.  
  40.             $this->settings = array_merge($this->settings, $settings);
  41.         }
  42.  
  43.        
  44.         $this->view->assign('settings', $this->settings);
  45.  
  46.         (...)
  47.  
  48.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement