Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Created October 7, 2011 19:09
Show Gist options
  • Save AV4TAr/1271117 to your computer and use it in GitHub Desktop.
Save AV4TAr/1271117 to your computer and use it in GitHub Desktop.
Loading application configuration from View Action
<?php
class MyController extends Zend_Controller_Action {
//...
public function myAction(){
$bootstrap = $this->getInvokeArg('bootstrap');
$config_options = $bootstrap->getOptions();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment