| 24 |
<table class="adminheading"> |
<table class="adminheading"> |
| 25 |
<tr> |
<tr> |
| 26 |
<th class="install"> |
<th class="install"> |
| 27 |
Installed Modules |
<?php echo T_('Installed Modules') ?> |
| 28 |
</th> |
</th> |
| 29 |
<td> |
<td> |
| 30 |
Filter: |
<?php echo T_('Filter:') ?> |
| 31 |
</td> |
</td> |
| 32 |
<td width="right"> |
<td width="right"> |
| 33 |
<?php echo $lists['filter'];?> |
<?php echo $lists['filter'];?> |
| 35 |
</tr> |
</tr> |
| 36 |
<tr> |
<tr> |
| 37 |
<td colspan="3"> |
<td colspan="3"> |
| 38 |
Only those Modules that can be uninstalled are displayed - some Core Modules cannot be removed. |
<?php echo T_('Only those Modules that can be uninstalled are displayed - some Core Modules cannot be removed.') ?> |
| 39 |
<br /><br /> |
<br /><br /> |
| 40 |
</td> |
</td> |
| 41 |
</tr> |
</tr> |
| 44 |
<table class="adminlist"> |
<table class="adminlist"> |
| 45 |
<tr> |
<tr> |
| 46 |
<th width="20%" class="title"> |
<th width="20%" class="title"> |
| 47 |
Module File |
<?php echo T_('Module File') ?> |
| 48 |
</th> |
</th> |
| 49 |
<th width="10%" align="left"> |
<th width="10%" align="left"> |
| 50 |
Client |
<?php echo T_('Client') ?> |
| 51 |
</th> |
</th> |
| 52 |
<th width="10%" align="left"> |
<th width="10%" align="left"> |
| 53 |
Author |
<?php echo T_('Author') ?> |
| 54 |
</th> |
</th> |
| 55 |
<th width="5%" align="center"> |
<th width="5%" align="center"> |
| 56 |
Version |
<?php echo T_('Version') ?> |
| 57 |
</th> |
</th> |
| 58 |
<th width="10%" align="center"> |
<th width="10%" align="center"> |
| 59 |
Date |
<?php echo T_('Date') ?> |
| 60 |
</th> |
</th> |
| 61 |
<th width="15%" align="left"> |
<th width="15%" align="left"> |
| 62 |
Author Email |
<?php echo T_('Author Email') ?> |
| 63 |
</th> |
</th> |
| 64 |
<th width="15%" align="left"> |
<th width="15%" align="left"> |
| 65 |
Author URL |
<?php echo T_('Author URL') ?> |
| 66 |
</th> |
</th> |
| 67 |
</tr> |
</tr> |
| 68 |
<?php |
<?php |
| 74 |
<td> |
<td> |
| 75 |
<input type="radio" id="cb<?php echo $i;?>" name="cid[]" value="<?php echo $row->id; ?>" onclick="isChecked(this.checked);"><span class="bold"><?php echo $row->module; ?></span></td> |
<input type="radio" id="cb<?php echo $i;?>" name="cid[]" value="<?php echo $row->id; ?>" onclick="isChecked(this.checked);"><span class="bold"><?php echo $row->module; ?></span></td> |
| 76 |
<td> |
<td> |
| 77 |
<?php echo $row->client_id == "0" ? 'Site' : 'Administrator'; ?> |
<?php echo $row->client_id == "0" ? T_('Site') : T_('Administrator'); ?> |
| 78 |
</td> |
</td> |
| 79 |
<td> |
<td> |
| 80 |
<?php echo @$row->author != "" ? $row->author : " "; ?> |
<?php echo @$row->author != "" ? $row->author : " "; ?> |
| 98 |
} else { |
} else { |
| 99 |
?> |
?> |
| 100 |
<td class="small"> |
<td class="small"> |
| 101 |
No custom modules installed |
<?php echo T_('No custom modules installed') ?> |
| 102 |
</td> |
</td> |
| 103 |
<?php |
<?php |
| 104 |
} |
} |