git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
274 lines
6.7 KiB
PHP
274 lines
6.7 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: admin.weblinks.html.php 10002 2008-02-08 10:56:57Z willebil $
|
|
* @package Joomla
|
|
* @subpackage Weblinks
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
|
|
* Joomla! is free software. This version may have been modified pursuant
|
|
* to the GNU General Public License, and as distributed it includes or
|
|
* is derivative of works licensed under the GNU General Public License or
|
|
* other free or open source software licenses.
|
|
* See COPYRIGHT.php for copyright notices and details.
|
|
*/
|
|
|
|
// no direct access
|
|
defined( '_VALID_MOS' ) or die( 'Restricted access' );
|
|
|
|
/**
|
|
* @package Joomla
|
|
* @subpackage Weblinks
|
|
*/
|
|
class HTML_weblinks {
|
|
|
|
function showWeblinks( $option, &$rows, &$lists, &$search, &$pageNav ) {
|
|
global $my;
|
|
|
|
mosCommonHTML::loadOverlib();
|
|
?>
|
|
<form action="index2.php" method="post" name="adminForm">
|
|
<table class="adminheading">
|
|
<tr>
|
|
<th>
|
|
Weblink Manager
|
|
</th>
|
|
<td>
|
|
Filter:
|
|
</td>
|
|
<td>
|
|
<input type="text" name="search" value="<?php echo htmlspecialchars( $search );?>" class="text_area" onChange="document.adminForm.submit();" />
|
|
</td>
|
|
<td width="right">
|
|
<?php echo $lists['catid'];?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="adminlist">
|
|
<tr>
|
|
<th width="5">
|
|
#
|
|
</th>
|
|
<th width="20">
|
|
<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows ); ?>);" />
|
|
</th>
|
|
<th class="title">
|
|
Title
|
|
</th>
|
|
<th width="5%">
|
|
Published
|
|
</th>
|
|
<th colspan="2" width="5%">
|
|
Reorder
|
|
</th>
|
|
<th width="25%" align="left">
|
|
Category
|
|
</th>
|
|
<th width="5%">
|
|
Hits
|
|
</th>
|
|
</tr>
|
|
<?php
|
|
$k = 0;
|
|
for ($i=0, $n=count( $rows ); $i < $n; $i++) {
|
|
$row = &$rows[$i];
|
|
|
|
$link = 'index2.php?option=com_weblinks&task=editA&hidemainmenu=1&id='. $row->id;
|
|
|
|
$task = $row->published ? 'unpublish' : 'publish';
|
|
$img = $row->published ? 'publish_g.png' : 'publish_x.png';
|
|
$alt = $row->published ? 'Published' : 'Unpublished';
|
|
|
|
$checked = mosCommonHTML::CheckedOutProcessing( $row, $i );
|
|
|
|
$row->cat_link = 'index2.php?option=com_categories§ion=com_weblinks&task=editA&hidemainmenu=1&id='. $row->catid;
|
|
?>
|
|
<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="Edit Weblinks">
|
|
<?php echo $row->title; ?>
|
|
</a>
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
<td align="center">
|
|
<a href="javascript: void(0);" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $task;?>')">
|
|
<img src="images/<?php echo $img;?>" width="12" height="12" border="0" alt="<?php echo $alt; ?>" />
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<?php echo $pageNav->orderUpIcon( $i, ($row->catid == @$rows[$i-1]->catid) ); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $pageNav->orderDownIcon( $i, $n, ($row->catid == @$rows[$i+1]->catid) ); ?>
|
|
</td>
|
|
<td>
|
|
<a href="<?php echo $row->cat_link; ?>" title="Edit Category">
|
|
<?php echo $row->category; ?>
|
|
</a>
|
|
</td>
|
|
<td align="center">
|
|
<?php echo $row->hits; ?>
|
|
</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">
|
|
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
|
|
</form>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Writes the edit form for new and existing record
|
|
*
|
|
* A new record is defined when <var>$row</var> is passed with the <var>id</var>
|
|
* property set to 0.
|
|
* @param mosWeblink The weblink object
|
|
* @param array An array of select lists
|
|
* @param object Parameters
|
|
* @param string The option
|
|
*/
|
|
function editWeblink( &$row, &$lists, &$params, $option ) {
|
|
mosMakeHtmlSafe( $row, ENT_QUOTES, 'description' );
|
|
|
|
mosCommonHTML::loadOverlib();
|
|
?>
|
|
<script language="javascript" type="text/javascript">
|
|
function submitbutton(pressbutton) {
|
|
var form = document.adminForm;
|
|
if (pressbutton == 'cancel') {
|
|
submitform( pressbutton );
|
|
return;
|
|
}
|
|
|
|
// do field validation
|
|
if (form.title.value == ""){
|
|
alert( "Weblink item must have a title" );
|
|
} else if (form.catid.value == "0"){
|
|
alert( "You must select a category." );
|
|
} else if (form.url.value == ""){
|
|
alert( "You must have a url." );
|
|
} else {
|
|
submitform( pressbutton );
|
|
}
|
|
}
|
|
</script>
|
|
<form action="index2.php" method="post" name="adminForm" id="adminForm">
|
|
<table class="adminheading">
|
|
<tr>
|
|
<th>
|
|
Weblink:
|
|
<small>
|
|
<?php echo $row->id ? 'Edit' : 'New';?>
|
|
</small>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="60%" valign="top">
|
|
<table class="adminform">
|
|
<tr>
|
|
<th colspan="2">
|
|
Details
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td width="20%" align="right">
|
|
Name:
|
|
</td>
|
|
<td width="80%">
|
|
<input class="text_area" type="text" name="title" size="50" maxlength="250" value="<?php echo $row->title;?>" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" align="right">
|
|
Category:
|
|
</td>
|
|
<td>
|
|
<?php echo $lists['catid']; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" align="right">
|
|
URL:
|
|
</td>
|
|
<td>
|
|
<input class="text_area" type="text" name="url" value="<?php echo $row->url; ?>" size="50" maxlength="250" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" align="right">
|
|
Description:
|
|
</td>
|
|
<td>
|
|
<textarea class="text_area" cols="50" rows="5" name="description" style="width:500px" width="500"><?php echo $row->description; ?></textarea>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td valign="top" align="right">
|
|
Ordering:
|
|
</td>
|
|
<td>
|
|
<?php echo $lists['ordering']; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" align="right">
|
|
Published:
|
|
</td>
|
|
<td>
|
|
<?php echo $lists['published']; ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td width="40%" valign="top">
|
|
<table class="adminform">
|
|
<tr>
|
|
<th colspan="1">
|
|
Parameters
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<?php echo $params->render();?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</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="" />
|
|
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
|
|
</form>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|