TrackManiaControl/libs/FML/Script/ScriptConstant.php

101 lines
1.8 KiB
PHP
Raw Normal View History

2014-04-27 14:44:40 +02:00
<?php
namespace FML\Script;
/**
* Class representing a Constant of the ManiaLink Script
*
2014-05-20 15:44:45 +02:00
* @author steeffeen <mail@steeffeen.com>
2017-03-25 18:40:15 +01:00
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
2014-05-18 19:45:50 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2014-04-27 14:44:40 +02:00
*/
2017-03-25 18:40:15 +01:00
class ScriptConstant
{
/**
* @var string $name Name
*/
protected $name = null;
/**
* @var mixed $value Value
*/
protected $value = null;
/**
* Construct a new Script Constant
*
* @api
* @param string $name (optional) Constant name
* @param mixed $value (optional) Constant value
*/
public function __construct($name = null, $value = null)
{
if ($name) {
$this->setName($name);
}
if ($value !== null) {
$this->setValue($value);
}
}
/**
* Get the name
*
* @api
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set the name
*
* @api
* @param string $name Constant name
* @return static
*/
public function setName($name)
{
$this->name = (string)$name;
return $this;
}
/**
* Get the value
*
* @api
* @return mixed
*/
public function getValue()
{
return $this->value;
}
/**
* Set the value
*
* @api
* @param mixed $value Constant value
* @return static
*/
public function setValue($value)
{
$this->value = $value;
return $this;
}
/**
* Build the Script Constant text
*
* @return string
*/
public function __toString()
{
return Builder::getConstant($this->name, $this->value);
}
2014-04-27 14:44:40 +02:00
}