?iť?

Your IP : 3.144.254.245


Current Path : /home/scgforma/www/cloud/apps/activity/lib/Parameter/
Upload File :
Current File : /home/scgforma/www/cloud/apps/activity/lib/Parameter/Parameter.php

<?php
/**
 * @copyright Copyright (c) 2016, ownCloud, Inc.
 *
 * @author Joas Schilling <coding@schilljs.com>
 *
 * @license AGPL-3.0
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

namespace OCA\Activity\Parameter;

use OCA\Activity\Formatter\IFormatter;
use OCP\Activity\IEvent;

class Parameter implements IParameter {
	/** @var IFormatter */
	protected $formatter;

	/** @var mixed */
	protected $parameter;

	/** @var IEvent */
	protected $event;

	/** @var string */
	protected $type;

	/**
	 * @param mixed $parameter
	 * @param IEvent $event
	 * @param IFormatter $formatter
	 * @param string $type
	 */
	public function __construct($parameter,
								IEvent $event,
								IFormatter $formatter,
								$type) {
		$this->parameter = $parameter;
		$this->event = $event;
		$this->formatter = $formatter;
		$this->type = $type;
	}

	/**
	 * @return mixed
	 */
	public function getParameter() {
		if ($this->event->getObjectType() && $this->event->getObjectId()) {
			return $this->event->getObjectType() . '#' . $this->event->getObjectId();
		}

		return $this->parameter;
	}

	/**
	 * @return array With two entries: value and type
	 */
	public function getParameterInfo() {
		return [
			'value' => $this->parameter,
			'type' => $this->type,
		];
	}

	/**
	 * @return string The formatted parameter
	 */
	public function format() {
		return $this->formatter->format($this->event, $this->parameter);
	}
}