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
62fae9c1
Commit
62fae9c1
authored
Mar 19, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2811 from dmeroff/theme_enhancements
Made Theme::basePath optional fixes #2810
parents
30d84ffb
0fa8f8cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
Theme.php
framework/base/Theme.php
+11
-7
No files found.
framework/base/Theme.php
View file @
62fae9c1
...
...
@@ -82,12 +82,11 @@ class Theme extends Component
{
parent
::
init
();
if
(
(
$basePath
=
$this
->
getBasePath
())
!==
null
)
{
if
(
empty
(
$this
->
pathMap
)
)
{
$this
->
pathMap
=
[
Yii
::
$app
->
getBasePath
()
=>
[
$basePath
]]
;
if
(
empty
(
$this
->
pathMap
)
)
{
if
(
(
$basePath
=
$this
->
getBasePath
())
==
null
)
{
throw
new
InvalidConfigException
(
'The "basePath" property must be set.'
)
;
}
}
else
{
throw
new
InvalidConfigException
(
'The "basePath" property must be set.'
);
$this
->
pathMap
=
[
Yii
::
$app
->
getBasePath
()
=>
[
$basePath
]];
}
}
...
...
@@ -173,13 +172,18 @@ class Theme extends Component
}
}
/**
* Converts a relative file path into an absolute one using [[basePath]].
* @param
string $path the relative file path to be converted.
* @param string $path the relative file path to be converted.
* @return string the absolute file path
*/
public
function
getPath
(
$path
)
{
return
$this
->
getBasePath
()
.
DIRECTORY_SEPARATOR
.
ltrim
(
$path
,
'/\\'
);
if
((
$basePath
=
$this
->
getBasePath
())
!==
null
)
{
return
$basePath
.
DIRECTORY_SEPARATOR
.
ltrim
(
$path
,
'/\\'
);
}
else
{
throw
new
InvalidConfigException
(
'The "basePath" property must be set.'
);
}
}
}
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