| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/blog/components/com_kunena/layout/announcement/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Layout.Announcement.Edit
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die;
/**
* KunenaLayoutAnnouncementEdit
*
* @since K4.0
*
*/
class KunenaLayoutAnnouncementEdit extends KunenaLayout
{
/**
* Method to create an input in fonction of name given
*
* @param string $name Name of input to create
* @param string $attributes Attibutes to be added to input
* @param int $id Id to be added to the input
*
* @return string
*/
public function displayInput($name, $attributes = '', $id = null)
{
switch ($name)
{
case 'id':
return '<input type="hidden" name="id" value="' . intval($this->announcement->id) . '" />';
case 'title':
return '<input type="text" name="title" ' . $attributes . ' value="' . $this->escape($this->announcement->title) . '"/>';
case 'sdescription':
return '<textarea name="sdescription" ' . $attributes . '>' . $this->escape($this->announcement->sdescription) . '</textarea>';
case 'description':
return '<textarea name="description" ' . $attributes . '>' . $this->escape($this->announcement->description) . '</textarea>';
case 'created':
return '<input type="text" class="span12" name="created" data-date-format="yyyy-mm-dd" value="' . $this->escape($this->announcement->created) . '">' . $attributes;
case 'publish_up':
return '<input type="text" class="span12" name="publish_up" data-date-format="yyyy-mm-dd" value="' . $this->escape($this->announcement->publish_up) . '">' . $attributes;
case 'publish_down':
return '<input type="text" class="span12" name="publish_down" data-date-format="yyyy-mm-dd" value="' . $this->escape($this->announcement->publish_down) . '">' . $attributes;
case 'showdate':
$options = array();
$options[] = JHtml::_('select.option', '0', JText::_('COM_KUNENA_NO'));
$options[] = JHtml::_('select.option', '1', JText::_('COM_KUNENA_YES'));
return JHtml::_('select.genericlist', $options, 'showdate', $attributes, 'value', 'text', $this->announcement->showdate, $id);
case 'published':
$options = array();
$options[] = JHtml::_('select.option', '0', JText::_('COM_KUNENA_NO'));
$options[] = JHtml::_('select.option', '1', JText::_('COM_KUNENA_YES'));
return JHtml::_('select.genericlist', $options, 'published', $attributes, 'value', 'text', $this->announcement->published, $id);
}
return '';
}
}