primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -0,0 +1,87 @@
<?php
/**
* Attachments component
*
* @package Attachments
* @subpackage Attachments_Component
*
* @copyright Copyright (C) 2007-2018 Jonathan M. Cameron, All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
* @link http://joomlacode.org/gf/project/attachments/frs/
* @author Jonathan M. Cameron
*/
// No direct access
defined('_JEXEC') or die('Restricted access');
// Add the plugins stylesheet to style the list of attachments
$document = JFactory::getDocument();
$uri = JFactory::getURI();
$lists = $this->lists;
// Handle both 2.5 and 3.x
$row_num = JText::_( 'JGRID_HEADING_ROW_NUMBER' );
if ($row_num == 'JGRID_HEADING_ROW_NUMBER') {
$row_num = '#';
}
?>
<form class="attachmentsBackend" enctype="multipart/form-data"
name="adminForm" id="adminForm"
action="<?php echo $this->post_url ?>" method="post">
<fieldset class="adminform">
<legend><?php echo JText::sprintf('ATTACH_SELECT_ENTITY_S', $this->parent_entity_name) ?></legend>
<div class="attachments_filter">
<?php echo JText::_( 'ATTACH_FILTER' ); ?>:
<input type="text" name="search" id="search" value="<?php echo $lists['search'];?>"
class="text_area" onchange="document.adminForm.submit();" />
<button onclick="this.form.submit();"><?php echo JText::_( 'ATTACH_GO' ); ?></button>
<button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_('ATTACH_RESET') ?></button>
</div>
<table class="adminlist" cellspacing="1">
<thead>
<tr>
<th width="5"><?php echo $row_num ?></th>
<th class="title">
<?php echo JHtml::_('grid.sort', 'ATTACH_TITLE', 'title', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<th width="2%" class="title">
<?php echo JHtml::_('grid.sort', 'JGRID_HEADING_ID', 'id', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
</tr>
</thead>
<tbody>
<?php
$k = 0;
for ($i=0, $n=count( $this->items ); $i < $n; $i++) {
$item = $this->items[$i];
?>
<tr class="<?php echo "row$k" ?>">
<td><?php echo $i ?></td>
<td>
<a style="cursor: pointer;" onclick="window.parent.jSelectParentArticle('<?php echo $item->id; ?>', '<?php echo str_replace(array("'", "\""), array("\\'", ""),$item->title); ?>', '<?php echo JRequest::getVar('object'); ?>');">
<?php echo htmlspecialchars($item->title, ENT_QUOTES, 'UTF-8'); ?></a>
</td>
<td><?php echo $item->id; ?></td>
</tr>
<?php
$k = 1 - $k;
}
?>
</tbody>
</table>
</fieldset>
<input type="hidden" name="parent_type" value="<?php echo $this->parent_type ?>" />
<input type="hidden" name="parent_entity" value="<?php echo $this->parent_entity ?>" />
<input type="hidden" name="option" value="<?php echo $this->option;?>" />
<input type="hidden" name="task" value="selectEntity" />
<input type="hidden" name="from" value="<?php echo $this->from; ?>" />
<input type="hidden" name="filter_order" value="<?php echo $lists['order']; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $lists['order_Dir']; ?>" />
<?php echo JHtml::_( 'form.token' ); ?>
</form>

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -0,0 +1,43 @@
<?php
/**
* Attachments component
*
* @package Attachments
* @subpackage Attachments_Component
*
* @copyright Copyright (C) 2007-2018 Jonathan M. Cameron, All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
* @link http://joomlacode.org/gf/project/attachments/frs/
* @author Jonathan M. Cameron
*/
// no direct access
defined( '_JEXEC' ) or die('Restricted access');
/** Define the legacy classes, if necessary */
require_once(JPATH_SITE.'/components/com_attachments/legacy/view.php');
/**
* HTML View class for adding new attachments
*
* @package Attachments
*/
class AttachmentsViewEntity extends JViewLegacy
{
/**
* Display the entity view
*/
public function display($tpl = null)
{
// Add the style sheets
JHtml::stylesheet('com_attachments/attachments_admin.css', Array(), true);
$lang = JFactory::getLanguage();
if ( $lang->isRTL() ) {
JHtml::stylesheet('com_attachments/attachments_admin_rtl.css', Array(), true);
}
parent::display($tpl);
}
}