Adding some more verb handling

This commit is contained in:
Michael 2020-05-19 20:32:15 +00:00
parent 929455bd01
commit eeda115e32
2 changed files with 23 additions and 3 deletions

View file

@ -33,7 +33,7 @@ class Verb
* @return integer verb id
* @throws \Exception
*/
public static function getID($verb)
public static function getID(string $verb)
{
if (empty($verb)) {
return 0;
@ -48,4 +48,24 @@ class Verb
return DBA::lastInsertId();
}
/**
* Return verb name for the given ID
*
* @param integer $id
* @return string verb
*/
public static function getbyID(int $id)
{
if (empty($id)) {
return '';
}
$verb_record = DBA::selectFirst('verb', ['name'], ['id' => $id]);
if (!DBA::isResult($verb_record)) {
return '';
}
return $verb_record['name'];
}
}