| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_article_list/ |
Upload File : |
<?php
/**
/************************************************************************
* Article List - Joomla! Component
* Copyright (C) 2008 by Dwayne Hill
* Homepage : www.jettheblackcat.com
* Version : 1.0.0 beta 1
* License :
* The Article List component is released under the GNU General public License, version 2
* See: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html for the full license.
* Warranty:
* JetTheBlackCat.com PRODUCTS ARE DISTRIBUTED AS IS.
* NO WARRANTY OF ANY KIND IS EXPRESSED OR IMPLIED.
* YOU USE IT AT YOUR OWN RISK.
* JetTheBlackCat AND ANY ASSOCIATES WILL NOT BE LIABLE FOR ANY DAMAGES,
* INCLUDING BUT NOT LIMITED TO DATA LOSS, LOSS OF PROFITS
* OR ANY OTHER KIND OF LOSS RELATED TO JetTheBlackCat products
************************************************************************/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
class HTML_article_list {
function settings( $option, &$params, $id ) {
global $mosConfig_live_site, $mosConfig_cachepath, $my;
?>
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:10000;"></div>
<form action="index2.php" method="post" name="adminForm">
<table class="adminheading">
<tr>
<th>
Article List Settings
</th>
</tr>
</table>
<table class="adminform">
<tr>
<th>
Parameters
</th>
</tr>
<tr>
<td>
<?php
//echo $params->render();
?>
<p>
No Paramters are set on this component. When adding this component as a menu item you will then get a list of paramters.
</p>
<center>
<p>
If you like this component or are using it on a commercial site then you might want to make a small donation to help us cover the costs <b>(or to buy me a beer)</b>.
</p>
<a href="http://www.jettheblackcat.com/index.php?option=com_content&task=view&id=180&Itemid=81"><img src="http://www.jettheblackcat.com/images/stories/btn_donate_LG.gif" alt="Support www.JetTheBlackCat.com" border="0" align=""></a>
</p>
</center>
</td>
</tr>
</table>
<table class="adminform">
<tr>
<td>
<table align="center">
<?php
$visible = 0;
// check to hide certain paths if not super admin
if ( $my->gid == 25 ) {
$visible = 1;
}
mosHTML::writableCell( $mosConfig_cachepath, 0, '<strong>Cache Directory</strong> ', $visible );
?>
</table>
</td>
</tr>
</table>
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<input type="hidden" name="name" value="article_list" />
<input type="hidden" name="admin_menu_link" value="option=com_article_list" />
<input type="hidden" name="admin_menu_alt" value="Manage Article Director Settings" />
<input type="hidden" name="option" value="com_article_list" />
<input type="hidden" name="admin_menu_img" value="js/ThemeOffice/component.png" />
<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="<?php echo josSpoofValue(); ?>" value="1" />
</form>
<script language="Javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script>
<?php
}
}
?>