TrackManiaControl/libs/FML/Script/ScriptFunction.php

61 lines
1.1 KiB
PHP
Raw Normal View History

2014-04-27 14:44:40 +02:00
<?php
namespace FML\Script;
/**
* Class representing a Function of the ManiaLink Script
*
2014-05-20 15:44:45 +02:00
* @author steeffeen <mail@steeffeen.com>
2014-04-27 14:44:40 +02:00
* @copyright FancyManiaLinks Copyright © 2014 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
*/
class ScriptFunction {
/*
2014-06-21 03:18:21 +02:00
* Protected properties
2014-04-27 14:44:40 +02:00
*/
protected $name = null;
protected $text = null;
/**
* Construct a new Script Function
*
2014-06-21 03:18:21 +02:00
* @param string $name (optional) Function name
* @param string $text (optional) Function text
2014-04-27 14:44:40 +02:00
*/
public function __construct($name = null, $text = null) {
$this->setName($name);
$this->setText($text);
}
/**
2014-06-21 03:18:21 +02:00
* Set the name
2014-04-27 14:44:40 +02:00
*
2014-06-21 03:18:21 +02:00
* @param string $name Function name
2014-07-03 22:34:47 +02:00
* @return static
2014-04-27 14:44:40 +02:00
*/
public function setName($name) {
2014-05-18 19:45:50 +02:00
$this->name = (string)$name;
2014-04-27 14:44:40 +02:00
return $this;
}
/**
2014-06-21 03:18:21 +02:00
* Set the text
2014-04-27 14:44:40 +02:00
*
2014-06-21 03:18:21 +02:00
* @param string $text Function text
2014-07-03 22:34:47 +02:00
* @return static
2014-04-27 14:44:40 +02:00
*/
public function setText($text) {
2014-05-18 19:45:50 +02:00
$this->text = (string)$text;
2014-04-27 14:44:40 +02:00
return $this;
}
/**
2014-06-21 03:18:21 +02:00
* Get the Script Function text
2014-04-27 14:44:40 +02:00
*
* @return string
*/
public function __toString() {
return $this->text;
}
}