. * * This file is a part of iCalcreator. */ namespace Kigkonsult\Icalcreator\Traits; use Kigkonsult\Icalcreator\Util\Util; /** * RECURRENCE-ID property functions * * @author Kjell-Inge Gustafsson, kigkonsult * @since 2.22.23 - 2017-02-05 */ trait RECURRENCE_IDtrait { /** * @var array component property RECURRENCE_ID value * @access protected */ protected $recurrenceid = null; /** * Return formatted output for calendar component property recurrence-id * * @return string */ public function createRecurrenceid() { if( empty( $this->recurrenceid )) { return null; } if( empty( $this->recurrenceid[Util::$LCvalue] )) { return ( $this->getConfig( Util::$ALLOWEMPTY )) ? Util::createElement( Util::$RECURRENCE_ID ) : null; } return Util::createElement( Util::$RECURRENCE_ID, Util::createParams( $this->recurrenceid[Util::$LCparams] ), Util::date2strdate( $this->recurrenceid[Util::$LCvalue], Util::isParamsValueSet( $this->recurrenceid, Util::$DATE ) ? 3 : null ) ); } /** * Set calendar component property recurrence-id * * @param mixed $year * @param mixed $month * @param int $day * @param int $hour * @param int $min * @param int $sec * @param string $tz * @param array $params * @return bool */ public function setRecurrenceid( $year, $month = null, $day = null, $hour = null, $min = null, $sec = null, $tz = null, $params = null ) { if( empty( $year )) { if( $this->getConfig( Util::$ALLOWEMPTY )) { $this->recurrenceid = [ Util::$LCvalue => Util::$SP0, Util::$LCparams => null, ]; return true; } else { return false; } } $this->recurrenceid = Util::setDate( $year, $month, $day, $hour, $min, $sec, $tz, $params,null, null, $this->getConfig( Util::$TZID ) ); return true; } }