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
8fc48909
Commit
8fc48909
authored
Oct 22, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed InstallHandler.
parent
d047f710
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
38 additions
and
107 deletions
+38
-107
composer.json
apps/advanced/composer.json
+2
-2
composer.json
apps/basic/composer.json
+3
-3
apps-advanced.md
docs/guide/apps-advanced.md
+2
-2
apps-basic.md
docs/guide/apps-basic.md
+3
-3
InstallHandler.php
extensions/composer/yii/composer/InstallHandler.php
+0
-97
AccordionAsset.php
extensions/jui/yii/jui/AccordionAsset.php
+1
-0
Extension.php
extensions/jui/yii/jui/Extension.php
+27
-0
No files found.
apps/advanced/composer.json
View file @
8fc48909
...
@@ -20,12 +20,12 @@
...
@@ -20,12 +20,12 @@
},
},
"scripts"
:
{
"scripts"
:
{
"post-create-project-cmd"
:
[
"post-create-project-cmd"
:
[
"yii
\\
composer
\\
Install
Handler::setPermissions
"
,
"yii
\\
composer
\\
Install
er::setPermission
"
,
"./init"
"./init"
]
]
},
},
"extra"
:
{
"extra"
:
{
"
yii-install-
writable"
:
[
"writable"
:
[
"backend/runtime"
,
"backend/runtime"
,
"backend/web/assets"
,
"backend/web/assets"
,
...
...
apps/basic/composer.json
View file @
8fc48909
...
@@ -20,15 +20,15 @@
...
@@ -20,15 +20,15 @@
},
},
"scripts"
:
{
"scripts"
:
{
"post-create-project-cmd"
:
[
"post-create-project-cmd"
:
[
"yii
\\
composer
\\
Install
Handler::setPermissions
"
"yii
\\
composer
\\
Install
er::setPermission
"
]
]
},
},
"extra"
:
{
"extra"
:
{
"
yii-install-
writable"
:
[
"writable"
:
[
"runtime"
,
"runtime"
,
"web/assets"
"web/assets"
],
],
"
yii-install-
executable"
:
[
"executable"
:
[
"yii"
"yii"
]
]
}
}
...
...
docs/guide/apps-advanced.md
View file @
8fc48909
...
@@ -144,11 +144,11 @@ directory:
...
@@ -144,11 +144,11 @@ directory:
},
},
"scripts"
:
{
"scripts"
:
{
"post-create-project-cmd"
:
[
"post-create-project-cmd"
:
[
"yii
\\
composer
\\
Install
Handler::setPermissions
"
"yii
\\
composer
\\
Install
er::setPermission
"
]
]
},
},
"extra"
:
{
"extra"
:
{
"
yii-install-
writable"
:
[
"writable"
:
[
"backend/runtime"
,
"backend/runtime"
,
"backend/web/assets"
,
"backend/web/assets"
,
...
...
docs/guide/apps-basic.md
View file @
8fc48909
...
@@ -134,15 +134,15 @@ directory:
...
@@ -134,15 +134,15 @@ directory:
},
},
"scripts"
:
{
"scripts"
:
{
"post-create-project-cmd"
:
[
"post-create-project-cmd"
:
[
"yii
\\
composer
\\
Install
Handler::setPermissions
"
"yii
\\
composer
\\
Install
er::setPermission
"
]
]
},
},
"extra"
:
{
"extra"
:
{
"
yii-install-
writable"
:
[
"writable"
:
[
"runtime"
,
"runtime"
,
"web/assets"
"web/assets"
],
],
"
yii-install-
executable"
:
[
"executable"
:
[
"yii"
"yii"
]
]
}
}
...
...
extensions/composer/yii/composer/InstallHandler.php
deleted
100644 → 0
View file @
d047f710
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\composer
;
use
Composer\Script\CommandEvent
;
use
yii\console\Application
;
use
yii\console\Exception
;
defined
(
'YII_DEBUG'
)
or
define
(
'YII_DEBUG'
,
true
);
// fcgi doesn't have STDIN defined by default
defined
(
'STDIN'
)
or
define
(
'STDIN'
,
fopen
(
'php://stdin'
,
'r'
));
/**
* InstallHandler is called by Composer after it installs/updates the current package.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Tobias Munk <schmunk@usrbin.de>
* @since 2.0
*/
class
InstallHandler
{
const
PARAM_WRITABLE
=
'yii-install-writable'
;
const
PARAM_EXECUTABLE
=
'yii-install-executable'
;
const
PARAM_CONFIG
=
'yii-install-config'
;
const
PARAM_COMMANDS
=
'yii-install-commands'
;
/**
* Sets the correct permissions of files and directories.
* @param CommandEvent $event
*/
public
static
function
setPermissions
(
$event
)
{
$options
=
array_merge
([
self
::
PARAM_WRITABLE
=>
[],
self
::
PARAM_EXECUTABLE
=>
[],
],
$event
->
getComposer
()
->
getPackage
()
->
getExtra
());
foreach
((
array
)
$options
[
self
::
PARAM_WRITABLE
]
as
$path
)
{
echo
"Setting writable:
$path
..."
;
if
(
is_dir
(
$path
))
{
chmod
(
$path
,
0777
);
echo
"done
\n
"
;
}
else
{
echo
"The directory was not found: "
.
getcwd
()
.
DIRECTORY_SEPARATOR
.
$path
;
return
;
}
}
foreach
((
array
)
$options
[
self
::
PARAM_EXECUTABLE
]
as
$path
)
{
echo
"Setting executable:
$path
..."
;
if
(
is_file
(
$path
))
{
chmod
(
$path
,
0755
);
echo
"done
\n
"
;
}
else
{
echo
"
\n\t
The file was not found: "
.
getcwd
()
.
DIRECTORY_SEPARATOR
.
$path
.
"
\n
"
;
return
;
}
}
}
/**
* Executes a yii command.
* @param CommandEvent $event
*/
public
static
function
run
(
$event
)
{
$options
=
array_merge
([
self
::
PARAM_COMMANDS
=>
[],
],
$event
->
getComposer
()
->
getPackage
()
->
getExtra
());
if
(
!
isset
(
$options
[
self
::
PARAM_CONFIG
]))
{
throw
new
Exception
(
'Please specify the "'
.
self
::
PARAM_CONFIG
.
'" parameter in composer.json.'
);
}
$configFile
=
getcwd
()
.
'/'
.
$options
[
self
::
PARAM_CONFIG
];
if
(
!
is_file
(
$configFile
))
{
throw
new
Exception
(
"Config file does not exist:
$configFile
"
);
}
require_once
(
__DIR__
.
'/../../../yii2/yii/Yii.php'
);
$application
=
new
Application
(
require
(
$configFile
));
$request
=
$application
->
getRequest
();
foreach
((
array
)
$options
[
self
::
PARAM_COMMANDS
]
as
$command
)
{
$params
=
str_getcsv
(
$command
,
' '
);
// see http://stackoverflow.com/a/6609509/291573
$request
->
setParams
(
$params
);
list
(
$route
,
$params
)
=
$request
->
resolve
();
echo
"Running command: yii
{
$command
}
\n
"
;
$application
->
runAction
(
$route
,
$params
);
}
}
}
extensions/jui/yii/jui/AccordionAsset.php
View file @
8fc48909
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
*/
*/
namespace
yii\jui
;
namespace
yii\jui
;
use
yii\web\AssetBundle
;
use
yii\web\AssetBundle
;
/**
/**
...
...
extensions/jui/yii/jui/Extension.php
0 → 100644
View file @
8fc48909
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\jui
;
use
Yii
;
/**
* This is the bootstrap class for the Yii JUI extension.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
Extension
extends
\yii\base\Extension
{
/**
* @inheritdoc
*/
public
static
function
init
()
{
Yii
::
setAlias
(
'@yii/jui'
,
__DIR__
);
}
}
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