I think the most elegant way is to create your Loader

// in the bootstrap
require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload( 'My_Loader' );


//Your class in library
class My_Loader
{

    public static function loadClass( $class)
    {
     
        // autodiscover the path from the class name
   
    }

}

-- 
View this message in context: 
http://www.nabble.com/Models-and-folder-grouping-tp19412763p19458193.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to