Subversion Repositories wpShopGermany4

Rev

Blame | Last modification | View Log | RSS feed

<?php
        
        /**
         * Template für die Integration in die Verwaltung der Berechtigungen
         */

        global $wpdb; $arRoles = get_option($wpdb->prefix."user_roles");

?>
<tr>
        <td class="wpsg_col_capname"><?php echo __('Kundengruppen', 'wpsg'); ?></td>
        <?php foreach ($arRoles as $role_key => $r) { ?>
        <td class="wpsg_col_cap">
                <input type="hidden" name="wpsg_cap[<?php echo $role_key; ?>][wpsg_customergroup]" value="0" />
                <input type="checkbox" <?php echo ((isset($r['capabilities']['wpsg_customergroup']) && $r['capabilities']['wpsg_customergroup'] == "1")?'checked="checked"':''); ?> name="wpsg_cap[<?php echo $role_key; ?>][wpsg_customergroup]" value="1" /> 
        </td>
        <?php } ?>
        <td></td>
</tr>