XPressME Integration Kit

Trac

Changeset 517


Ignore:
Timestamp:
Feb 25, 2010, 1:24:08 AM (14 years ago)
Author:
toemon
Message:

システム情報にグループ権限の情報を表示 Fixes #288

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","¥Î¡¼¥Þ¥ë·Á¼°¤Çɽ¼¨"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","¥Ö¥í¥Ã¥¯¥ª¥×¥·¥ç¥ó"); 
     22        define("_AM_XP2_GROUP_ROLE","¥°¥ë¡¼¥×¸¢¸Â"); 
    2223 
    2324// Block Check   
  • trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","ノーマル形式で表示"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","ブロックオプション"); 
     22        define("_AM_XP2_GROUP_ROLE","グループ権限"); 
    2223 
    2324// Block Check   
  • trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/language/pt-br_utf8/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","Exibir em formato normal"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","Bloqueie Opções"); 
     22        define("_AM_XP2_GROUP_ROLE","Se agrupe Papel"); 
    2223 
    2324// Block Check   
  • trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","Show Normal Mode"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","Block Options"); 
     22        define("_AM_XP2_GROUP_ROLE","Group Role"); 
    2223 
    2324// Block Check   
  • trunk/xpressme_integration_kit/admin/index.php

    r511 r517  
    610610        } 
    611611} 
     612function xpress_group_role_state($is_report = false) 
     613{ 
     614        global $xoopsModule; 
     615        $xoopsDB =& Database::getInstance(); 
     616        $xp_prefix = $GLOBALS['xoopsModule']->getInfo('dirname'); 
     617        if ($xp_prefix == 'wordpress'){ 
     618                $xp_prefix = 'wp'; 
     619        } 
     620        $prefix = $xoopsDB->prefix($xp_prefix . '_'); 
     621        $group_role_tables = $prefix.'group_role'; 
     622        $sql = "SELECT groupid , name AS xoops_groupe ,group_type, role , login_all FROM ". $group_role_tables; 
     623        $result = $xoopsDB->query($sql); 
     624        if ($is_report){ 
     625                echo "******** " . _AM_XP2_GROUP_ROLE . "********" . "<br />\n"; 
     626        } else { 
     627                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_GROUP_ROLE . "</legend>"; 
     628                echo "<div style='padding: 8px;'>"; 
     629                echo '<table width="400" cellspacing="1" cellpadding="1" border="1">'; 
     630                echo '<tbody>'; 
     631                echo '<tr>'; 
     632                echo '<td>GROUP</td>'; 
     633                echo '<td>GROUPE TYPE</td>'; 
     634                echo '<td>ROLE</td>'; 
     635                echo '<td>Allways Check</td>'; 
     636                echo '</tr>'; 
     637        } 
     638        $groupe_list = ''; 
     639        while ($myrow = $xoopsDB->fetchArray($result)){ 
     640                $xoops_groupe = $myrow["xoops_groupe"] ; 
     641                $group_type = empty($myrow["group_type"]) ? "None" : $myrow["group_type"] ; 
     642                $role = empty($myrow["role"]) ? "inhibit register" : $myrow["role"] ; 
     643                $login_all = empty($myrow["login_all"]) ? 'No' : 'Yes' ; 
     644                if (!empty($groupe_list)) $groupe_list .= ','; 
     645                $groupe_list .= $myrow["groupid"]; 
     646                if ($is_report){ 
     647                        echo $xoops_groupe . ' : '; 
     648                        echo '(' . $group_type. ') : '; 
     649                        echo $role; 
     650                        echo '(' . $login_all. ') : '; 
     651                        echo '<br />'; 
     652                } else { 
     653                        echo '<tr>'; 
     654                        echo '<td>' . $xoops_groupe . '</td>'; 
     655                        echo '<td>' . $group_type . '</td>'; 
     656                        echo '<td>' . $role . '</td>'; 
     657                        echo '<td>' . $login_all . '</td>'; 
     658                        echo '</tr>'; 
     659                } 
     660        } 
     661        $group_tables = $xoopsDB->prefix('groups'); 
     662        $where = ' WHERE groupid NOT IN (' . $groupe_list . ')'; 
     663        $sql = "SELECT groupid , name AS xoops_groupe ,group_type FROM ". $group_tables . $where; 
     664        $result = $xoopsDB->query($sql); 
     665        while ($myrow = $xoopsDB->fetchArray($result)){ 
     666                $xoops_groupe = $myrow["xoops_groupe"] ; 
     667                $group_type = empty($myrow["group_type"]) ? 'inhibit(None)' : 'inhibit(' .$myrow["group_type"].')' ; 
     668                $role = "No set"; 
     669                $login_all = 'No Set'; 
     670                if ($is_report){ 
     671                        echo $xoops_groupe . ' : '; 
     672                        echo '[' . $group_type. '] : '; 
     673                        echo $role; 
     674                        echo '(' . $login_all. ') : '; 
     675                        echo '<br />'; 
     676                } else { 
     677                        echo '<tr>'; 
     678                        echo '<td>' . $xoops_groupe . '</td>'; 
     679                        echo '<td>' . $group_type . '</td>'; 
     680                        echo '<td>' . $role . '</td>'; 
     681                        echo '<td>' . $login_all . '</td>'; 
     682                        echo '</tr>'; 
     683                } 
     684        } 
     685        if ($is_report){ 
     686                echo "<br />"; 
     687        } else { 
     688                echo '</tbody>'; 
     689                echo '</table>'; 
     690                echo "</div>"; 
     691                echo '</legend>'; 
     692                echo "</fieldset><br />"; 
     693        } 
     694} 
    612695function xpress_block_state($is_report = false) 
    613696{ 
     
    766849xpress_block_state($report); 
    767850xpress_block_options($report); 
     851xpress_group_role_state($report); 
    768852admin_check_user_meta_prefix($report); 
    769853xpress_state($report); 
  • trunk/xpressme_integration_kit/language/english/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","Show Normal Mode"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","Block Options"); 
     22        define("_AM_XP2_GROUP_ROLE","Group Role"); 
    2223 
    2324// Block Check   
  • trunk/xpressme_integration_kit/language/ja_utf8/admin.php

    r511 r517  
    2020        define("_AM_XP2_SYS_NORMAL","ノーマル形式で表示"); 
    2121        define("_AM_XP2_BLOCK_OPTIONS","ブロックオプション"); 
     22        define("_AM_XP2_GROUP_ROLE","グループ権限"); 
    2223 
    2324// Block Check   
Note: See TracChangeset for help on using the changeset viewer.