⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.php

📁 this the oscommerce 3.0 aplha 4
💻 PHP
字号:
<?php/*  $Id: main.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2007 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/  $goto_array = array(array('id' => '',                            'text' => $osC_Language->get('top_level')));  if ( $_SESSION['fm_directory'] != OSC_ADMIN_FILE_MANAGER_ROOT_PATH ) {    $path_array = explode('/', substr($_SESSION['fm_directory'], strlen(OSC_ADMIN_FILE_MANAGER_ROOT_PATH)+1));    foreach ( $path_array as $value ) {      if ( sizeof($goto_array) < 2 ) {        $goto_array[] = array('id' => $value,                              'text' => $value);      } else {        $parent = end($goto_array);        $goto_array[] = array('id' => $parent['id'] . '/' . $value,                              'text' => $parent['id'] . '/' . $value);      }    }  }  $osC_DirectoryListing = new osC_DirectoryListing($_SESSION['fm_directory']);  $osC_DirectoryListing->setStats(true);?><h1><?php echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule()), $osC_Template->getPageTitle()); ?></h1><?php  if ( $osC_MessageStack->size($osC_Template->getModule()) > 0 ) {    echo $osC_MessageStack->output($osC_Template->getModule());  }?><div style="float: right;">  <form name="file_manager" action="<?php echo osc_href_link_admin(FILENAME_DEFAULT); ?>" method="get"><?php echo osc_draw_hidden_field($osC_Template->getModule()); ?>  <?php echo $osC_Language->get('operation_heading_directory') . ' ' . osc_draw_pull_down_menu('goto', $goto_array, substr($_SESSION['fm_directory'], strlen(OSC_ADMIN_FILE_MANAGER_ROOT_PATH)+1), 'onchange="this.form.submit();"'); ?>  <?php echo '<input type="button" value="' . $osC_Language->get('button_upload') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&action=upload') . '\';" class="infoBoxButton" />&nbsp;<input type="button" value="' . $osC_Language->get('button_new_file') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&action=save') . '\';" class="infoBoxButton" />&nbsp;<input type="button" value="' . $osC_Language->get('button_new_folder') . '" onclick="document.location.href=\'' . osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&action=saveDirectory') . '\';" class="infoBoxButton" />'; ?>  </form></div><table border="0" width="100%" cellspacing="0" cellpadding="2" class="dataTable">  <thead>    <tr>      <th><?php echo $osC_Language->get('table_heading_files'); ?></th>      <th><?php echo $osC_Language->get('table_heading_size'); ?></th>      <th><?php echo $osC_Language->get('table_heading_permissions'); ?></th>      <th><?php echo $osC_Language->get('table_heading_user'); ?></th>      <th><?php echo $osC_Language->get('table_heading_group'); ?></th>      <th><?php echo $osC_Language->get('table_heading_writable'); ?></th>      <th><?php echo $osC_Language->get('table_heading_date_last_modified'); ?></th>      <th width="150"><?php echo $osC_Language->get('table_heading_action'); ?></th>    </tr>  </thead>  <tfoot>    <tr>      <th colspan="8">&nbsp;</th>    </tr>  </tfoot>  <tbody><?php  if ( $_SESSION['fm_directory'] != OSC_ADMIN_FILE_MANAGER_ROOT_PATH ) {?>    <tr onmouseover="rowOverEffect(this);" onmouseout="rowOutEffect(this);">      <td colspan="8"><?php echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&goto=' . $goto_array[sizeof($goto_array)-2]['id']), osc_icon('2uparrow.png') . '&nbsp;' . $osC_Language->get('parent_level')); ?></td>    </tr><?php  }  foreach ( $osC_DirectoryListing->getFiles() as $file ) {    $file_owner = posix_getpwuid($file['user_id']);    $group_owner = posix_getgrgid($file['group_id']);    if ( $file['is_directory'] === true ) {      $entry_icon = osc_icon('folder_red.png');      $entry_url = osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&directory=' . $file['name']);    } else {      $entry_icon = osc_icon('file.png');      $entry_url = osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&entry=' . $file['name'] . '&action=save');    }?>    <tr onmouseover="rowOverEffect(this);" onmouseout="rowOutEffect(this);">      <td><?php echo osc_link_object($entry_url, $entry_icon . '&nbsp;' . $file['name']); ?></td>      <td align="right"><?php echo number_format($file['size']); ?></td>      <td align="center"><tt><?php echo osc_get_file_permissions($file['permissions']); ?></tt></td>      <td><?php echo $file_owner['name']; ?></td>      <td><?php echo $group_owner['name']; ?></td>      <td align="center"><?php echo osc_icon(is_writable($osC_DirectoryListing->getDirectory() . '/' . $file['name']) ? 'checkbox_ticked.gif' : 'checkbox_crossed.gif', null, null); ?></td>      <td align="right"><?php echo date('F d Y H:i:s', $file['last_modified']); ?></td>      <td align="right"><?php    if ( $file['is_directory'] === false ) {      echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&entry=' . $file['name'] . '&action=save'), osc_icon('edit.png')) . '&nbsp;' .           osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&entry=' . $file['name'] . '&action=download'), osc_icon('save.png')) . '&nbsp;';    } else {      echo osc_image('images/pixel_trans.gif') . '&nbsp;' .           osc_image('images/pixel_trans.gif') . '&nbsp;';    }    echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule() . '&entry=' . $file['name'] . '&action=delete'), osc_icon('trash.png'));?>      </td>    </tr><?php  }?>  </tbody></table><table border="0" width="100%" cellspacing="0" cellpadding="2">  <tr>    <td style="opacity: 0.5; filter: alpha(opacity=50);"><?php echo '<b>' . $osC_Language->get('table_action_legend') . '</b> ' . osc_icon('edit.png') . '&nbsp;' . $osC_Language->get('icon_edit') . '&nbsp;&nbsp;' . osc_icon('download.png') . '&nbsp;' . $osC_Language->get('icon_download') . '&nbsp;&nbsp;' . osc_icon('trash.png') . '&nbsp;' . $osC_Language->get('icon_trash'); ?></td>  </tr></table><p><?php echo osc_output_string_protected($_SESSION['fm_directory']); ?></p>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -