equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Application |
16 * @package Zend_Application |
17 * @subpackage Module |
17 * @subpackage Module |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @version $Id: Bootstrap.php 25024 2012-07-30 15:08:15Z rob $ |
19 * @version $Id$ |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Application_Bootstrap_Bootstrap |
24 * @see Zend_Application_Bootstrap_Bootstrap |
31 * @uses Zend_Loader_Autoloader_Resource |
31 * @uses Zend_Loader_Autoloader_Resource |
32 * @uses Zend_Application_Bootstrap_Bootstrap |
32 * @uses Zend_Application_Bootstrap_Bootstrap |
33 * @category Zend |
33 * @category Zend |
34 * @package Zend_Application |
34 * @package Zend_Application |
35 * @subpackage Module |
35 * @subpackage Module |
36 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
36 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
38 */ |
38 */ |
39 abstract class Zend_Application_Module_Bootstrap |
39 abstract class Zend_Application_Module_Bootstrap |
40 extends Zend_Application_Bootstrap_Bootstrap |
40 extends Zend_Application_Bootstrap_Bootstrap |
41 { |
41 { |
46 protected $_moduleName; |
46 protected $_moduleName; |
47 |
47 |
48 /** |
48 /** |
49 * Constructor |
49 * Constructor |
50 * |
50 * |
51 * @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application |
51 * @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application |
52 * @return void |
|
53 */ |
52 */ |
54 public function __construct($application) |
53 public function __construct($application) |
55 { |
54 { |
56 $this->setApplication($application); |
55 $this->setApplication($application); |
57 |
56 |