Files
grzanieplus.pl/plugins/stQuestionPlugin/lib/model/Questions.php
2025-03-12 17:06:23 +01:00

23 lines
332 B
PHP

<?php
/**
* Subclass for representing a row from the 'st_questions' table.
*
*
*
* @package plugins.stQuestionPlugin.lib.model
*/
class Questions extends BaseQuestions
{
public function getText()
{
return stXssSafe::clean($this->text);
}
public function getEmail()
{
return stXssSafe::clean($this->email);
}
}