/openshift/adei

To get this branch, use:
bzr branch http://darksoft.org/webbzr/openshift/adei

« back to all changes in this revision

Viewing changes to module.php

  • Committer: Suren A. Chilingaryan
  • Date: 2011-01-26 02:48:39 UTC
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: csa@dside.dyndns.org-20110126024839-nv6qp2ie9stmd2dn
Support of Appled devices by Toni Pirhonen

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    $separator_flag = 0;
13
13
 
14
14
    foreach (($list===false)?$MODULES:$list as $module) {
15
 
        if ($separator_flag) echo " | ";
16
 
        else $separator_flag = 1;
 
15
        if ($separator_flag) echo " | ";
 
16
        else $separator_flag = 1;
17
17
 
18
18
        if (strcmp($config_module, $module)) $css = "module_link";
19
19
        else $css = "module_link_current";
20
 
        
21
 
        echo "<a class=\"$css\" id=\"module_link_$module\" href=\"javascript:adei.OpenModule('$module')\">";
 
20
                
 
21
        echo "<a class=\"$css\" id=\"module_link_$module\" href=\"javascript:adei.OpenModule('$module')\">";
 
22
                
22
23
        if (isset($GLOBALS[$module . "_title"])) echo $GLOBALS[$module . "_title"];
23
24
        else echo $module;
24
25
        echo "</a>";