Kohana v3.3.0

This commit is contained in:
Deon George
2013-04-22 14:09:50 +10:00
commit f96694b18f
1280 changed files with 145034 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
Parameter Errors:
<?php foreach ($errors as $parameter => $error): ?>
<?php echo $parameter; ?> - <?php echo $error; ?>
<?php endforeach; ?>
Run
php index.php --task=<?php echo $task?> --help
for more help

View File

@@ -0,0 +1,7 @@
<?php echo $error; ?>
Run
index.php --uri=minion
for more help

View File

@@ -0,0 +1,17 @@
Minion is a cli tool for performing tasks
Usage
<?php echo $_SERVER['argv'][0]; ?> {task} --task=[options]
Where {task} is one of the following:
<?php foreach($tasks as $task): ?>
* <?php echo $task; ?>
<?php endforeach; ?>
For more information on what a task does and usage details execute
<?php echo $_SERVER['argv'][0]; ?> --task={task} --help

View File

@@ -0,0 +1,17 @@
Usage
=======
php minion.php --task=<?php echo $task; ?> [--option1=value1] [--option2=value2]
Details
=======
<?php foreach($tags as $tag_name => $tag_content): ?>
<?php echo ucfirst($tag_name) ?>: <?php echo $tag_content ?>
<?php endforeach; ?>
Description
===========
<?php echo $description; ?>