. * * This file is a part of iCalcreator. */ namespace Kigkonsult\Icalcreator\Traits; use Kigkonsult\Icalcreator\Util\Util; use Kigkonsult\Icalcreator\Util\UtilRexdate; /** * EXDATE property functions * * @author Kjell-Inge Gustafsson, kigkonsult * @since 2.22.23 - 2017-02-05 */ trait EXDATEtrait { /** * @var array component property EXDATE value * @access protected */ protected $exdate = null; /** * Return formatted output for calendar component property exdate * * @return string */ public function createExdate() { if( empty( $this->exdate )) { return null; } return UtilRexdate::formatExdate( $this->exdate, $this->getConfig( Util::$ALLOWEMPTY )); } /** * Set calendar component property exdate * * @param array $exdates * @param array $params * @param integer $index * @return bool */ public function setExdate( $exdates, $params = null, $index = null ) { if( empty( $exdates )) { if( $this->getConfig( Util::$ALLOWEMPTY )) { Util::setMval( $this->exdate, Util::$SP0, $params, false, $index ); return true; } else { return false; } } $input = UtilRexdate::prepInputExdate( $exdates, $params ); Util::setMval( $this->exdate, $input[Util::$LCvalue], $input[Util::$LCparams],false, $index ); return true; } }