The first incarnation of the developer tools. This allows the user to

enter a module name, a description and pick the call backs and or
events they want to support and generate the basic module skeleton
with one click.
@todo: clone a module, clone a theme, generate skeleton controller,
view,
This commit is contained in:
Tim Almdal
2009-03-13 22:15:16 +00:00
parent 70390e83f8
commit 74768e4cea
15 changed files with 525 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= html::script("modules/developer/js/developer.js") ?>
<div id="gDeveloper">
<h2>
<?= t("Developer Tools") ?>
</h2>
<div id="gDeveloperTools">
<ul>
<li><a href="#create-module"><span><?= t("Create new module") ?></span></a></li>
</ul>
<div id="#create-module">
<?= $module_create ?>
</div>
</div>
</div>