This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| routes.login.type = "Zend_Controller_Router_Route_Static" | |
| routes.login.route = login.html | |
| routes.login.defaults.module = default | |
| routes.login.defaults.controller = auth | |
| routes.login.defaults.action = login |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Album\Model; | |
| use Zend\ServiceManager\ServiceManager; | |
| use Zend\ServiceManager\ServiceManagerAwareInterface; | |
| class Album implements ServiceManagerAwareInterface | |
| { | |
| protected $serviceManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyModule; | |
| use Zend\ModuleManager\ModuleManager; | |
| class Module | |
| { | |
| public function init(ModuleManager $moduleManager) | |
| { | |
| $sharedEvents = $moduleManager->getEventManager()->getSharedManager(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # get the submodule initially | |
| git submodule add ssh://bla submodule_dir | |
| git submodule init | |
| # time passes, submodule upstream is updated | |
| # and you now want to update | |
| # change to the submodule directory | |
| cd submodule_dir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class My_Form_Template extends My_Form | |
| { | |
| public function init() | |
| { | |
| parent::init(); | |
| $this->addElements(array( | |
| $this->createElement(self::TYPE_MULTICHECKBOX, 'checks', array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class My_Form_Template extends My_Form | |
| { | |
| public function init() | |
| { | |
| parent::init(); | |
| $this->addElements(array( | |
| $this->createElement(self::TYPE_MULTICHECKBOX, 'checks', array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .clearform{ | |
| display:inline-block; | |
| margin-left:-16px; | |
| cursor:pointer; | |
| width:10px; | |
| height:10px; | |
| background-image:url('/close.gif'); | |
| -webkit-box-shadow: 0px 0px 10px 5px #fff ; | |
| } |
NewerOlder