コード例 #1
0
ファイル: notification.php プロジェクト: ratbird/hope
            <col width="7px">
            <col>
        <? for ($i = 0; $i < count($modules); $i += 1): ?>
            <col width="20px">
        <? endfor; ?>
        </colgroup>
        <thead>
            <tr>
                <th colspan="2"><?php 
echo _('Veranstaltung');
?>
</th>
            <? foreach ($modules as $name => $data): ?>
                <th>
                    <?php 
echo Icon::create(module_icon($name), 'info', ['title' => $data['name']])->asImg(['class' => 'middle']);
?>
                </th>
            <? endforeach; ?>
                <th><?php 
echo _('Alle');
?>
</th>
            </tr>
            <tr>
                <td colspan="2">
                    <?php 
echo _('Benachrichtigung für alle aufgelisteten Veranstaltungen:');
?>
                </td>
            <? for ($i = 0; $i < count($modules); $i += 1): ?>
コード例 #2
0
ファイル: body.php プロジェクト: RodolfoSilva/tendoo-cms
?>
                            <div class="row">
                                <div class="col-lg-8">
                                    <section class="panel">
                                        <div class="panel-heading">
                                            <?php 
_e('Installed Modules');
?>
                                        </div>
                                        <table class="table table-striped">
                                            <tbody>
                                                <?php 
if ($mod_nbr > 0) {
    if (is_array($modules_list) && $modules_list) {
        foreach ($modules_list as $mod) {
            $appIcon = module_icon($mod['namespace']);
            ?>
                                                <tr>
                                                    <td><a class="view" href="<?php 
            echo $this->instance->url->site_url(array('admin', 'open', 'modules', $mod['namespace']));
            ?>
">
                                                        <?php 
            if ($appIcon) {
                ?>
                                                        <img src="<?php 
                echo $appIcon;
                ?>
" style="height:70px;width:70px;">
                                                        <?php 
            } else {