View of /mambo/branches/4.6/administrator/components/com_newsfeeds/admin.newsfeeds.html.php
Parent Directory
|
Revision Log
Revision 297 -
(download)
(annotate)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 6659 byte(s)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 6659 byte(s)
replacement of copyright notices
<?php /** * @package Mambo Open Source * @subpackage Newsfeeds * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * 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.' ); class HTML_newsfeeds { function showNewsFeeds( &$rows, &$lists, $pageNav, $option ) { global $my; mosCommonHTML::loadOverlib(); ?> <form action="index2.php" method="post" name="adminForm"> <table class="adminheading"> <tr> <th> <?php echo T_('Newsfeed Manager') ?> </th> <td width="right"> <?php echo $lists['category'];?> </td> </tr> </table> <table class="adminlist"> <tr> <th width="20"> # </th> <th width="20"> <input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows ); ?>);" /> </th> <th class="title"> <?php echo T_('News Feed') ?> </th> <th width="5%"> <?php echo T_('Published') ?> </th> <th colspan="2" width="5%"> <?php echo T_('Reorder') ?> </th> <th class="title" width="20%"> <?php echo T_('Category') ?> </th> <th width="5%" nowrap="nowrap"> <?php echo T_('# Articles') ?> </th> <th width="10%"> <?php echo T_('Cache time') ?> </th> </tr> <?php $k = 0; for ($i=0, $n=count( $rows ); $i < $n; $i++) { $row = &$rows[$i]; $link = 'index2.php?option=com_newsfeeds&task=editA&hidemainmenu=1&id='. $row->id; $img = $row->published ? 'tick.png' : 'publish_x.png'; $task = $row->published ? 'unpublish' : 'publish'; $alt = $row->published ? 'Published' : 'Unpublished'; $checked = mosCommonHTML::CheckedOutProcessing( $row, $i ); $row->cat_link = 'index2.php?option=com_categories§ion=com_newsfeeds&task=editA&hidemainmenu=1&id='. $row->catid; ?> <tr class="<?php echo 'row'. $k; ?>"> <td align="center"> <?php echo $pageNav->rowNumber( $i ); ?> </td> <td> <?php echo $checked; ?> </td> <td> <?php if ( $row->checked_out && ( $row->checked_out != $my->id ) ) { ?> <?php echo $row->name; ?> [ <i><?php echo T_('Checked Out') ?></i> ] <?php } else { ?> <a href="<?php echo $link; ?>" title="<?php echo T_('Edit Newsfeed') ?>"> <?php echo $row->name; ?> </a> <?php } ?> </td> <td width="10%" align="center"> <a href="javascript: void(0);" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $task;?>')"> <img src="images/<?php echo $img;?>" border="0" alt="<?php echo $alt; ?>" /> </a> </td> <td align="center"> <?php echo $pageNav->orderUpIcon( $i ); ?> </td> <td align="center"> <?php echo $pageNav->orderDownIcon( $i, $n ); ?> </td> <td> <a href="<?php echo $row->cat_link; ?>" title="<?php echo T_('Edit Category') ?>"> <?php echo $row->catname;?> </a> </td> <td align="center"> <?php echo $row->numarticles;?> </td> <td align="center"> <?php echo $row->cache_time;?> </td> </tr> <?php $k = 1 - $k; } ?> </table> <?php echo $pageNav->getListFooter(); ?> <input type="hidden" name="option" value="<?php echo $option;?>" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <input type="hidden" name="hidemainmenu" value="0"> </form> <?php } function editNewsFeed( &$row, &$lists, $option ) { mosMakeHtmlSafe( $row, ENT_QUOTES ); ?> <script language="javascript" type="text/javascript"> function submitbutton(pressbutton) { var form = document.adminForm; if (pressbutton == 'cancel') { submitform( pressbutton ); return; } // do field validation if (form.name.value == '') { alert( "<?php echo T_('Please fill in the newsfeed name.') ?>" ); } else if (form.catid.value == 0) { alert( "<?php echo T_('Please select a Category.') ?>" ); } else if (form.link.value == '') { alert( "<?php echo T_('Please fill in the newsfeed link.') ?>" ); } else if (getSelectedValue('adminForm','catid') < 0) { alert( "<?php echo T_('Please select a category.') ?>" ); } else if (form.numarticles.value == "" || form.numarticles.value == 0) { alert( "<?php echo T_('Please fill in the number of articles to display.') ?>" ); } else if (form.cache_time.value == "" || form.cache_time.value == 0) { alert( "<?php echo T_('Please fill in the cache refresh time.') ?>" ); } else { submitform( pressbutton ); } } </script> <form action="index2.php" method="post" name="adminForm"> <table class="adminheading"> <tr> <th class="edit"> <?php echo T_('Newsfeed:') ?> <small><?php echo $row->id ? T_('Edit') : T_('New');?></small> <small><small>[ <?php echo $row->name;?> ]</small></small> </th> </tr> </table> <table class="adminform"> <tr> <th colspan="2"> <?php echo T_('Details') ?> </th> </tr> <tr> <td> <?php echo T_('Name') ?> </td> <td> <input class="inputbox" type="text" size="40" name="name" value="<?php echo $row->name; ?>"> </td> </tr> <tr> <td> <?php echo T_('Category') ?> </td> <td> <?php echo $lists['category']; ?> </td> </tr> <tr> <td> <?php echo T_('Link') ?> </td> <td> <input class="inputbox" type="text" size="60" name="link" value="<?php echo $row->link; ?>"> </td> </tr> <tr> <td> <?php echo T_('Number of Articles') ?> </td> <td> <input class="inputbox" type="text" size="2" name="numarticles" value="<?php echo $row->numarticles; ?>"> </td> </tr> <tr> <td> <?php echo T_('Cache time (in seconds)') ?> </td> <td> <input class="inputbox" type="text" size="4" name="cache_time" value="<?php echo $row->cache_time; ?>"> </td> </tr> <tr> <td> <?php echo T_('Ordering') ?> </td> <td> <?php echo $lists['ordering']; ?> </td> </tr> <tr> <td valign="top" align="right"> <?php echo T_('Published:') ?> </td> <td> <?php echo $lists['published']; ?> </td> </tr> <tr> <td colspan="2" align="center"> </td> </tr> </table> <input type="hidden" name="id" value="<?php echo $row->id; ?>"> <input type="hidden" name="option" value="<?php echo $option; ?>"> <input type="hidden" name="task" value=""> </form> <?php } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

