📄 admin.frontpage.html.php
字号:
<?php/*** @version $Id: admin.frontpage.html.php,v 1.15 2005/02/16 16:27:10 saka Exp $* @package Mambo* @subpackage Content* @copyright (C) 2000 - 2005 Miro International Pty Ltd* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL* Mambo is Free Software*//** ensure this file is being included by a parent file */defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );/*** @package Mambo* @subpackage Content*/class HTML_content { /** * Writes a list of the content items * @param array An array of content objects */ function showList( &$rows, $search, $pageNav, $option, $lists ) { global $my, $acl, $adminLanguage; mosCommonHTML::loadOverlib(); ?> <form action="index2.php" method="post" name="adminForm"> <table class="adminheading"> <tr> <th class="frontpage" rowspan="2"> <?php echo $adminLanguage->A_COMP_FRONT_PAGE_MNG;?> </th> <td width="right"> <?php echo $lists['sectionid'];?> </td> <td width="right"> <?php echo $lists['catid'];?> </td> <td width="right"> <?php echo $lists['authorid'];?> </td> </tr> <tr> <td align="right" colspan="2"> <?php echo $adminLanguage->A_COMP_FILTER;?>: </td> <td> <input type="text" name="search" value="<?php echo $search;?>" class="text_area" onChange="document.adminForm.submit();" /> </td> </tr> </table> <table class="adminlist"> <tr> <th width="5"> <?php echo $adminLanguage->A_COMP_NB;?> </th> <th width="20"> <input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows ); ?>);" /> </th> <th class="title"> <?php echo $adminLanguage->A_COMP_TITLE;?> </th> <th width="10%" nowrap="nowrap"> <?php echo $adminLanguage->A_COMP_PUBLISHED;?> </th> <th colspan="2" nowrap="nowrap" width="5%"> <?php echo $adminLanguage->A_COMP_REORDER;?> </th> <th width="2%"> <?php echo $adminLanguage->A_COMP_ORDER;?> </th> <th width="1%"> <a href="javascript: saveorder( <?php echo count( $rows )-1; ?> )"><img src="images/filesave.png" border="0" width="16" height="16" alt="<?php echo $adminLanguage->A_COMP_SAVE_ORDER;?>" /></a> </th> <th width="8%" nowrap="nowrap"> <?php echo $adminLanguage->A_COMP_ACCESS;?> </th> <th width="10%" align="left"> <?php echo $adminLanguage->A_COMP_SECTION;?> </th> <th width="10%" align="left"> <?php echo $adminLanguage->A_COMP_CATEG;?> </th> <th width="10%" align="left"> <?php echo $adminLanguage->A_COMP_AUTHOR;?> </th> </tr> <?php $k = 0; for ($i=0, $n=count( $rows ); $i < $n; $i++) { $row = &$rows[$i]; $link = 'index2.php?option=com_content§ionid=0&task=edit&hidemainmenu=1&id='. $row->id; $row->sect_link = 'index2.php?option=com_sections&task=editA&hidemainmenu=1&id='. $row->sectionid; $row->cat_link = 'index2.php?option=com_categories&task=editA&hidemainmenu=1&id='. $row->catid; $now = date( "Y-m-d h:i:s" ); if ( $now <= $row->publish_up && $row->state == "1" ) { $img = 'publish_y.png'; $alt = $adminLanguage->A_COMP_PUBLISHED; } else if ( ( $now <= $row->publish_down || $row->publish_down == "0000-00-00 00:00:00" ) && $row->state == "1" ) { $img = 'publish_g.png'; $alt = $adminLanguage->A_COMP_PUBLISHED; } else if ( $now > $row->publish_down && $row->state == "1" ) { $img = 'publish_r.png'; $alt = $adminLanguage->A_COMP_EXPIRED; } elseif ( $row->state == "0" ) { $img = "publish_x.png"; $alt = $adminLanguage->A_COMP_UNPUBLISHED; } $times = ''; if ( isset( $row->publish_up ) ) { if ( $row->publish_up == '0000-00-00 00:00:00' ) { $times .= '<tr><td>$adminLanguage->A_COMP_CONTENT_START_ALWAYS</td></tr>'; } else { $times .= '<tr><td>$adminLanguage->A_COMP_CONTENT_START: '. $row->publish_up .'</td></tr>'; } } if ( isset( $row->publish_down ) ) { if ( $row->publish_down == '0000-00-00 00:00:00' ) { $times .= '<tr><td>$adminLanguage->A_COMP_CONTENT_FIN_NOEXP</td></tr>'; } else { $times .= '<tr><td>$adminLanguage->A_COMP_CONTENT_FINISH: '. $row->publish_down .'</td></tr>'; } } $access = mosCommonHTML::AccessProcessing( $row, $i ); $checked = mosCommonHTML::CheckedOutProcessing( $row, $i ); if ( $acl->acl_check( 'administration', 'manage', 'users', $my->usertype, 'components', 'com_users' ) ) { if ( $row->created_by_alias ) { $author = $row->created_by_alias; } else { $linkA = 'index2.php?option=com_users&task=editA&hidemainmenu=1&id='. $row->created_by; $author = '<a href="'. $linkA .'" title="' . $adminLanguage->A_COMP_CONTENT_EDIT_USER . '">'. $row->author .'</a>'; } } else { if ( $row->created_by_alias ) { $author = $row->created_by_alias; } else { $author = $row->author; } } ?> <tr class="<?php echo "row$k"; ?>"> <td> <?php echo $pageNav->rowNumber( $i ); ?> </td> <td> <?php echo $checked; ?> </td> <td> <?php if ( $row->checked_out && ( $row->checked_out != $my->id ) ) { echo $row->title; } else { ?> <a href="<?php echo $link; ?>" title="<?php echo $adminLanguage->A_COMP_CONTENT_EDIT_CONTENT;?>"> <?php echo $row->title; ?> </a> <?php } ?> </td> <?php if ( $times ) { ?> <td align="center"> <a href="javascript: void(0);" onmouseover="return overlib('<table><?php echo $times; ?></table>', CAPTION, 'Publish Information', BELOW, RIGHT);" onMouseOut="return nd();" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $row->state ? "unpublish" : "publish";?>')"> <img src="images/<?php echo $img;?>" width="12" height="12" border="0" alt="<?php echo $alt;?>" /> </a> </td> <?php } ?> <td> <?php echo $pageNav->orderUpIcon( $i ); ?> </td> <td> <?php echo $pageNav->orderDownIcon( $i, $n ); ?> </td> <td align="center" colspan="2"> <input type="text" name="order[]" size="5" value="<?php echo $row->fpordering;?>" class="text_area" style="text-align: center" /> </td> <td align="center"> <?php echo $access;?> </td> <td> <a href="<?php echo $row->sect_link; ?>" title="<?php echo $adminLanguage->A_COMP_CONTENT_EDIT_SECTION;?>"> <?php echo $row->sect_name; ?> </a> </td> <td> <a href="<?php echo $row->cat_link; ?>" title="<?php echo $adminLanguage->A_COMP_CONTENT_EDIT_CATEGORY;?>"> <?php echo $row->name; ?> </a> </td> <td> <?php echo $author; ?> </td> </tr> <?php $k = 1 - $k; } ?> </table> <?php echo $pageNav->getListFooter(); mosCommonHTML::ContentLegend(); ?> <input type="hidden" name="option" value="<?php echo $option;?>" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> </form> <?php }}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -