| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.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 : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/lemans/components/com_community/libraries/fields/ |
Upload File : |
<?php
/**
* @copyright (C) 2013 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
use Joomla\CMS\Language\Text;
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.utilities.date');
require_once (COMMUNITY_COM_PATH.'/libraries/fields/profilefield.php');
class CFieldsTime extends CProfileField
{
/**
* Method to format the specified value for text type
**/
public function getFieldHTML( $field , $required )
{
$required = ($field->required == 1) ? ' data-required="true"' : '';
$html = '';
$hour = '';
$minute = 0;
$second = '';
if(! empty($field->value))
{
$myTimeArr = explode(' ', $field->value);
if(is_array($myTimeArr) && count($myTimeArr) > 0)
{
$myTime = explode(':', $myTimeArr[0]);
$hour = !empty($myTime[0]) ? $myTime[0] : '00';
$minute = !empty($myTime[1]) ? $myTime[1] : '00';
$second = !empty($myTime[2]) ? $myTime[2] : '00';
}
}
$hours = array();
for($i=0; $i<24; $i++)
{
$hours[] = ($i<10)? '0'.$i : $i;
}
$minutes = array();
for($i=0; $i<60; $i++)
{
$minutes[] = ($i<10)? '0'.$i : $i;
}
$seconds = array();
for($i=0; $i<60; $i++)
{
$seconds[] = ($i<10)? '0'.$i : $i;
}
//CFactory::load( 'helpers' , 'string' );
$class = ($field->required == 1) ? ' data-required="true"' : '';
$class .= !empty( $field->tips ) ? ' jomNameTips tipRight' : '';
$html .= '<div class="timefield ' . $class . '" style="line-height: 200%;" title="' . CStringHelper::escape( Text::_( $field->tips ) ) . '">';
$html .= '<select name="field' . $field->id . '[]" style="display: inline-block; width: auto;" '.$required.' >';
for( $i = 0; $i < count($hours); $i++)
{
if($hours[$i]==$hour)
{
$html .= '<option value="' . $hours[$i] . '" selected="selected">' . $hours[$i] . '</option>';
}
else
{
$html .= '<option value="' . $hours[$i] . '">' . $hours[$i] . '</option>';
}
}
$html .= '</select> ' . Text::_('COM_COMMUNITY_HOUR_FORMAT') . ' : ';
$html .= '<select name="field' . $field->id . '[]" style="display: inline-block; width: auto;" >';
for( $i = 0; $i < count($minutes); $i++)
{
if($minutes[$i]==$minute)
{
$html .= '<option value="' . $minutes[$i] . '" selected="selected">' . $minutes[$i] . '</option>';
}
else
{
$html .= '<option value="' . $minutes[$i] . '">' . $minutes[$i] . '</option>';
}
}
$html .= '</select> ' . Text::_('COM_COMMUNITY_MINUTE_FORMAT') . ' : ';
$html .= '<select name="field' . $field->id . '[]" style="display: inline-block; width: auto;" >';
for( $i = 0; $i < count($seconds); $i++)
{
if($seconds[$i]==$second)
{
$html .= '<option value="' . $seconds[$i] . '" selected="selected">' . $seconds[$i] . '</option>';
}
else
{
$html .= '<option value="' . $seconds[$i] . '">' . $seconds[$i] . '</option>';
}
}
$html .= '</select> ' . Text::_('COM_COMMUNITY_SECOND_FORMAT');
$html .= '<span id="errfield'.$field->id.'msg" style="display:none;"> </span>';
$html .= '</div>';
return $html;
}
public function isValid( $value , $required )
{
if( $required && empty($value))
{
return false;
}
return true;
}
public function formatdata( $value )
{
$finalvalue = '';
if(is_array($value))
{
if( empty( $value[0] ) || empty( $value[1] ) || empty( $value[2] ) )
{
$finalvalue = '';
}
else
{
$hour = !empty($value[0]) ? $value[0] : '00';
$minute = !empty($value[1]) ? $value[1] : '00';
$second = !empty($value[2]) ? $value[2] : '00';
$finalvalue = $hour . ':' . $minute . ':' . $second;
}
}
return $finalvalue;
}
}