Skip to content

Instantly share code, notes, and snippets.

@curtis1000
Created October 12, 2012 20:10
Show Gist options
  • Save curtis1000/3881246 to your computer and use it in GitHub Desktop.
Save curtis1000/3881246 to your computer and use it in GitHub Desktop.
Zend Framework Tab module bootstrap
<?php
/**
* Tab Module Bootstrap
*
* @category ProjectNamespace
* @package Application
* @subpackage Tab
* @author Curtis Branum <cbranum@nerdery.com>
* @version $Id$
*/
class Tab_Bootstrap extends Zend_Application_Module_Bootstrap
{
/**
* Add any module-specific routes to the application Bootstrap,
* adding routes here interferes with the pageTabUrl route that
* is needed for deep-linking. It would appear that a route that
* we want to match pageTabUrl will match routes defined in the
* module Bootstrap, breaking deep-linking behavior that is desired
* from the pageTabUrl route defined in Bear Facebook
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment