Files
gallery3/modules/developer/views/admin_developer.html.php
Tim Almdal 74768e4cea 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,
2009-03-13 22:15:16 +00:00

16 lines
409 B
PHP

<?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>