mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 11:59:13 -04:00
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,
16 lines
409 B
PHP
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>
|