📄 keys.php
字号:
<?php /* SYSKEYS $Id: keys.php,v 1.9.12.2 2007/03/06 00:34:44 merlinyoda Exp $*/if (!defined('DP_BASE_DIR')){ die('You should not access this file directly.');}$sql = "SELECT * FROM syskeys ORDER BY syskey_name";$keys = db_loadList( $sql );$syskey_id = isset( $_GET['syskey_id'] ) ? $_GET['syskey_id'] : 0;$titleBlock = new CTitleBlock( 'System Lookup Keys', 'myevo-weather.png', $m, "$m.$a" );$titleBlock->addCrumb( "?m=system", "System Admin" );$titleBlock->show();?><script language="javascript"><?php// security improvement:// some javascript functions may not appear on client side in case of user not having write permissions// else users would be able to arbitrarily run 'bad' functionsif ($canEdit) {?>function delIt(id) { if (confirm( 'Are you sure you want to delete this?' )) { f = document.sysKeyFrm; f.del.value = 1; f.syskey_id.value = id; f.submit(); }}<?php } ?></script><table border="0" cellpadding="2" cellspacing="1" width="100%" class="tbl"><tr> <th> </th> <th><?php echo $AppUI->_('Name');?></th> <th colspan="2"><?php echo $AppUI->_('Label');?></th> <th> </th></tr><?phpfunction showRow($id=0, $name='', $label='') { GLOBAL $canEdit, $syskey_id, $CR, $AppUI; $s = '<tr>'.$CR; if ($syskey_id == $id && $canEdit) { $s .= '<form name="sysKeyFrm" method="post" action="?m=system&u=syskeys&a=do_syskey_aed">'.$CR; $s .= '<input type="hidden" name="del" value="0" />'.$CR; $s .= '<input type="hidden" name="syskey_id" value="'.$id.'" />'.$CR; $s .= '<td> </td>'; $s .= '<td><input type="text" name="syskey_name" value="'.$name.'" class="text" /></td>'; $s .= '<td><textarea name="syskey_label" class="small" rows="2" cols="40">'.$label.'</textarea></td>'; $s .= '<td><input type="submit" value="'.$AppUI->_($id ? 'edit' : 'add').'" class="button" /></td>'; $s .= '<td> </td>'; } else { $s .= '<td width="12">'; if ($canEdit) { $s .= '<a href="?m=system&u=syskeys&a=keys&syskey_id='.$id.'"><img src="./images/icons/pencil.gif" alt="edit" border="0" width="12" height="12"></a>'; $s .= '</td>'.$CR; } $s .= '<td>'.$name.'</td>'.$CR; $s .= '<td colspan="2">'.$label.'</td>'.$CR; $s .= '<td width="16">'; if ($canEdit) { $s .= '<a href="javascript:delIt('.$id.')"><img align="absmiddle" src="./images/icons/trash.gif" width="16" height="16" alt="'.$AppUI->_('delete').'" border="0"></a>'; } $s .= '</td>'.$CR; } $s .= '</tr>'.$CR; return $s;}// do the modules that are installed on the system$s = '';foreach ($keys as $row) { echo showRow( $row['syskey_id'], $row['syskey_name'], $row['syskey_label'] );}// add in the new key row:if ($syskey_id == 0) { echo showRow();}?></table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -