Tims-Chat/files/lib/data/command/CommandTrigger.class.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
PHP
Raw Normal View History

2018-08-16 22:30:59 +00:00
<?php
2022-03-04 17:10:24 +00:00
2018-08-16 22:30:59 +00:00
/*
* Copyright (c) 2010-2023 Tim Düsterhus.
2018-08-16 22:30:59 +00:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
* Change Date: 2027-02-02
2018-08-16 22:30:59 +00:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
namespace chat\data\command;
2022-03-04 17:10:24 +00:00
use wcf\data\DatabaseObject;
use wcf\system\request\IRouteController;
use wcf\system\WCF;
2018-08-16 22:30:59 +00:00
/**
2022-03-04 17:10:24 +00:00
* Represents a chat command trigger.
2018-08-16 22:30:59 +00:00
*/
2022-03-04 17:10:24 +00:00
class CommandTrigger extends DatabaseObject implements IRouteController
{
/**
* @inheritDoc
*/
public function getTitle(): string
2022-03-04 17:10:24 +00:00
{
return $this->commandTrigger;
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* @inheritDoc
*/
public function getObjectID()
{
return $this->triggerID;
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* Returns the trigger specified by its commandTrigger value
*
* @return CommandTrigger
*/
2022-03-04 17:48:05 +00:00
public static function getTriggerByName(string $name)
2022-03-04 17:10:24 +00:00
{
$sql = "SELECT *
FROM chat1_command_trigger
WHERE commandTrigger = ?";
$statement = WCF::getDB()->prepare($sql);
$statement->execute([ $name ]);
$row = $statement->fetchArray();
if (!$row) {
$row = [];
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
return new self(null, $row);
}
2018-08-16 22:30:59 +00:00
}