Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
b02bd6c0
Commit
b02bd6c0
authored
Oct 20, 2014
by
techird
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'native-export' of github.com:fex-team/kityminder into native-export
parents
d3c707da
adf5189f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
Tpl.class.php
native-support/archive/src/Tpl.class.php
+18
-4
No files found.
native-support/archive/src/Tpl.class.php
View file @
b02bd6c0
...
...
@@ -18,11 +18,11 @@ class Tpl {
$dir
=
dirname
(
__FILE__
)
.
'/'
;
$smarty
->
config_dir
=
$dir
.
"tmp/configs"
;
$smarty
->
config_dir
=
self
::
createDir
(
$dir
.
"tmp/configs"
)
;
$smarty
->
caching
=
false
;
$smarty
->
template_dir
=
$dir
.
"tpl"
;
$smarty
->
compile_dir
=
$dir
.
"tmp/templates_c"
;
$smarty
->
cache_dir
=
$dir
.
"tmp/cahce"
;
$smarty
->
template_dir
=
self
::
createDir
(
$dir
.
"tpl"
)
;
$smarty
->
compile_dir
=
self
::
createDir
(
$dir
.
"tmp/templates_c"
)
;
$smarty
->
cache_dir
=
self
::
createDir
(
$dir
.
"tmp/cahce"
)
;
if
(
!
empty
(
$data
)
)
{
foreach
(
$data
as
$k
=>
$v
)
{
...
...
@@ -34,4 +34,18 @@ class Tpl {
}
private
static
function
createDir
(
$path
)
{
if
(
file_exists
(
$path
)
)
{
return
$path
;
}
if
(
!
mkdir
(
$path
,
0700
,
true
)
)
{
throw
new
Exception
(
"directory creation failed: "
.
$path
);
}
return
$path
;
}
}
\ No newline at end of file
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