| [ Index ] | PHP Cross Reference of Mambo 4.6.5 |
|
| [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Mambo 4 * @subpackage Syndicate 5 * @author Mambo Foundation Inc see README.php 6 * @copyright (C) 2000 - 2009 Mambo Foundation Inc. 7 * See COPYRIGHT.php for copyright notices and details. 8 * @license GNU/GPL Version 2, see LICENSE.php 9 * 10 * Redistributions of files must retain the above copyright notice. 11 * 12 * Mambo is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU General Public License 14 * as published by the Free Software Foundation; version 2 of the License. 15 */ 16 17 /** ensure this file is being included by a parent file */ 18 defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); 19 20 class HTML_syndicate { 21 22 function settings( $option, &$params, $id ) { 23 global $mosConfig_live_site; 24 ?> 25 <div id="overDiv" style="position:absolute; visibility:hidden; z-index:10000;"></div> 26 <form action="index2.php" method="post" name="adminForm"> 27 <table class="adminheading"> 28 <tr> 29 <th> 30 <?php echo T_('Syndication Settings'); ?> 31 </th> 32 </tr> 33 </table> 34 35 <table class="adminform"> 36 <tr> 37 <th> 38 <?php echo T_('Parameters'); ?> 39 </th> 40 </tr> 41 <tr> 42 <td> 43 <?php 44 echo $params->render(); 45 ?> 46 </td> 47 </tr> 48 </table> 49 50 <input type="hidden" name="id" value="<?php echo $id; ?>" /> 51 <input type="hidden" name="name" value="Syndicate" /> 52 <input type="hidden" name="admin_menu_link" value="option=com_syndicate" /> 53 <input type="hidden" name="admin_menu_alt" value="<?php echo T_('Manage Syndication Settings'); ?>" /> 54 <input type="hidden" name="admin_menu_img" value="js/ThemeOffice/component.png" /> 55 <input type="hidden" name="option" value="<?php echo $option; ?>" /> 56 <input type="hidden" name="task" value="" /> 57 <input type="hidden" name="boxchecked" value="0" /> 58 </form> 59 <script src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js" type="text/javascript"></script> 60 <?php 61 } 62 } 63 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed May 23 00:05:01 2012 | Cross-referenced by PHPXref 0.7 |
| Mambo API: Mambo is Free software released under the GNU/General Public License, Version 2 |