* * @package stQuestionPlugin * @subpackage actions */ class stQuestionBackendComponents extends autostQuestionBackendComponents { public function executeQuestionStatusType() { $this->select_options = array(); $i18n = $this->getContext()->getI18N(); foreach (QuestionStatusPeer::getTypes() as $type => $label) { $this->select_options[$type] = $i18n->__($label); } } }