. * * This file is a part of iCalcreator. */ namespace Kigkonsult\Icalcreator\Traits; use Kigkonsult\Icalcreator\Util\Util; use function is_numeric; /** * PERCENT-COMPLETE property functions * * @author Kjell-Inge Gustafsson, kigkonsult * @since 2.22.23 - 2017-02-05 */ trait PERCENT_COMPLETEtrait { /** * @var array component property PERCENT_COMPLETE value * @access protected */ protected $percentcomplete = null; /** * Return formatted output for calendar component property percent-complete * * @return string */ public function createPercentComplete() { if( ! isset( $this->percentcomplete ) || ( empty( $this->percentcomplete ) && ! is_numeric( $this->percentcomplete ))) { return null; } if( ! isset( $this->percentcomplete[Util::$LCvalue] ) || ( empty( $this->percentcomplete[Util::$LCvalue] ) && ! is_numeric( $this->percentcomplete[Util::$LCvalue] ))) { return ( $this->getConfig( Util::$ALLOWEMPTY )) ? Util::createElement( Util::$PERCENT_COMPLETE ) : null; } return Util::createElement( Util::$PERCENT_COMPLETE, Util::createParams( $this->percentcomplete[Util::$LCparams] ), $this->percentcomplete[Util::$LCvalue] ); } /** * Set calendar component property percent-complete * * @param int $value * @param array $params * @return bool */ public function setPercentComplete( $value, $params = null ) { if( empty( $value ) && ! is_numeric( $value )) { if( $this->getConfig( Util::$ALLOWEMPTY )) { $value = Util::$SP0; } else { return false; } } $this->percentcomplete = [ Util::$LCvalue => $value, Util::$LCparams => Util::setParams( $params ), ]; return true; } }