. * * This file is a part of iCalcreator. */ namespace Kigkonsult\Icalcreator\Traits; use Kigkonsult\Icalcreator\Util\Util; /** * TZURL property functions * * @author Kjell-Inge Gustafsson, kigkonsult * @since 2.22.23 - 2017-02-05 */ trait TZURLtrait { /** * @var array component property TZURL value * @access protected */ protected $tzurl = null; /** * Return formatted output for calendar component property tzurl * * @return string */ public function createTzurl() { if( empty( $this->tzurl )) { return null; } if( empty( $this->tzurl[Util::$LCvalue] )) { return ( $this->getConfig( Util::$ALLOWEMPTY )) ? Util::createElement( Util::$TZURL ) : null; } return Util::createElement( Util::$TZURL, Util::createParams( $this->tzurl[Util::$LCparams] ), $this->tzurl[Util::$LCvalue] ); } /** * Set calendar component property tzurl * * @param string $value * @param array $params * @return bool */ public function setTzurl( $value, $params = null ) { if( empty( $value )) { if( $this->getConfig( Util::$ALLOWEMPTY )) { $value = Util::$SP0; } else { return false; } } $this->tzurl = [ Util::$LCvalue => $value, Util::$LCparams => Util::setParams( $params ), ]; return true; } }