1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/modules/moduleorder/views/admin_moduleorder_blocks.html.php

10 lines
463 B
PHP
Raw Normal View History

2010-08-03 17:26:22 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? $indent_provider = module::get_var("gallery", "identity_provider") ?>
<? foreach ($modules as $ref => $text): ?>
<? if ($text == "gallery" || $text == $indent_provider): ?>
<li style="background-color:#A8A8A8; margin:0.5em; padding:0.3em 0.8em; display: none" ref="<?= $ref ?>"><?= $text ?></li>
2010-08-03 17:26:22 +00:00
<? else: ?>
<li class="g-draggable" ref="<?= $ref ?>"><?= $text ?></li>
<? endif ?>
<? endforeach ?>