TrackManiaControl/libs/FML/Types/Scriptable.php

22 lines
486 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements with scriptevents attribute
*
* @author steeffeen <mail@steeffeen.com>
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface Scriptable {
/**
* Set script events
*
* @param bool $scriptEvents Whether script events should be enabled
* @return static
*/
public function setScriptEvents($scriptEvents);
}