curtis1000
10/12/2012 - 8:10 PM

Zend Framework Tab module bootstrap

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
     */
}