diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2010-01-21 20:38:25 -0800 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-21 20:38:25 -0800 |
| commit | 318c86ab56ec63f2f65af0581991c7a5dc8ae433 (patch) | |
| tree | eb4de1e0d3bb4c800c9fdd1e4ed45a0b66961426 /modules/gallery/views/admin_modules_confirm.html.php | |
| parent | 8788880065ca199216df552f66fd065c3f35a0aa (diff) | |
| parent | 0da5d9e606fba5b6dc6137812df32cd1d0f5750f (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev
Diffstat (limited to 'modules/gallery/views/admin_modules_confirm.html.php')
| -rw-r--r-- | modules/gallery/views/admin_modules_confirm.html.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/gallery/views/admin_modules_confirm.html.php b/modules/gallery/views/admin_modules_confirm.html.php new file mode 100644 index 00000000..59592505 --- /dev/null +++ b/modules/gallery/views/admin_modules_confirm.html.php @@ -0,0 +1,22 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<div class="ui-helper-clearfix"> + <p> + <?= t("The following issue(s) have been identified:") ?> + </p> + + <div id="g-admin-modules-messages" class="g-block-content"> + <ul> + <? foreach (array("error" => "g-error", "warn" => "g-warning") as $type => $class): ?> + <? foreach ($messages[$type] as $message): ?> + <li class="<?= $class ?>" style="padding-bottom: 0"><?= $message ?></li> + <? endforeach ?> + <? endforeach ?> + </ul> + <form method="post" action="<?= url::site("admin/modules/save") ?>"> + <?= access::csrf_form_field() ?> + <? foreach ($modules as $module): ?> + <?= form::hidden($module, 1) ?> + <? endforeach ?> + </form> + </div> +</div> |
