Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
d22e8ea3
Commit
d22e8ea3
authored
Apr 18, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added YiiBase::importNamespaces().
parent
bab32229
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
14 deletions
+26
-14
YiiBase.php
framework/YiiBase.php
+24
-0
Application.php
framework/base/Application.php
+0
-12
AssetBundle.php
framework/web/AssetBundle.php
+2
-2
No files found.
framework/YiiBase.php
View file @
d22e8ea3
...
...
@@ -139,6 +139,30 @@ class YiiBase
}
/**
* Imports a set of namespaces.
*
* By importing a namespace, the method will create an alias for the directory corresponding
* to the namespace. For example, if "foo\bar" is a namespace associated with the directory
* "path/to/foo/bar", then an alias "@foo/bar" will be created for this directory.
*
* This method is typically invoked in the bootstrap file to import the namespaces of
* the installed extensions. By default, Composer, when installing new extensions, will
* generate such a mapping file which can be loaded and passed to this method.
*
* @param array $namespaces the namespaces to be imported. The keys are the namespaces,
* and the values are the corresponding directories.
*/
public
static
function
importNamespaces
(
$namespaces
)
{
foreach
(
$namespaces
as
$name
=>
$path
)
{
if
(
$name
!==
''
)
{
$name
=
'@'
.
str_replace
(
'\\'
,
'/'
,
$name
);
static
::
setAlias
(
$name
,
$path
);
}
}
}
/**
* Translates a path alias into an actual path.
*
* The translation is done according to the following procedure:
...
...
framework/base/Application.php
View file @
d22e8ea3
...
...
@@ -56,11 +56,6 @@ class Application extends Module
* If this is false, layout will be disabled.
*/
public
$layout
=
'main'
;
/**
* @var array list of installed extensions. The array keys are the extension names, and the array
* values are the corresponding extension root source directories or path aliases.
*/
public
$extensions
=
array
();
private
$_ended
=
false
;
...
...
@@ -92,13 +87,6 @@ class Application extends Module
throw
new
InvalidConfigException
(
'The "basePath" configuration is required.'
);
}
if
(
isset
(
$config
[
'extensions'
]))
{
foreach
(
$config
[
'extensions'
]
as
$name
=>
$path
)
{
Yii
::
setAlias
(
"@
$name
"
,
$path
);
}
unset
(
$config
[
'extensions'
]);
}
$this
->
registerErrorHandlers
();
$this
->
registerCoreComponents
();
...
...
framework/web/AssetBundle.php
View file @
d22e8ea3
...
...
@@ -89,7 +89,7 @@ class AssetBundle extends Object
* @var array the options to be passed to [[AssetManager::publish()]] when the asset bundle
* is being published.
*/
public
$publishOption
=
array
();
public
$publishOption
s
=
array
();
/**
* Initializes the bundle.
...
...
@@ -119,7 +119,7 @@ class AssetBundle extends Object
}
if
(
$this
->
sourcePath
!==
null
)
{
list
(
$this
->
basePath
,
$this
->
baseUrl
)
=
$am
->
publish
(
$this
->
sourcePath
,
$this
->
publishOption
);
list
(
$this
->
basePath
,
$this
->
baseUrl
)
=
$am
->
publish
(
$this
->
sourcePath
,
$this
->
publishOption
s
);
}
foreach
(
$this
->
js
as
$js
=>
$options
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment