Updated to KH 3.3 and improved

This commit is contained in:
Deon George
2013-04-13 16:17:56 +10:00
parent 6f50463ec7
commit 6f7913d363
1551 changed files with 96188 additions and 29813 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; ?>