ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.SurveyQuestionPoolDBUpdateSteps.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\SurveyQuestionPool\Setup
;
22
23
class
SurveyQuestionPoolDBUpdateSteps
implements
\ilDatabaseUpdateSteps
24
{
25
protected \ilDBInterface
$db
;
26
27
public
function
prepare
(\
ilDBInterface
$db): void
28
{
29
$this->db =
$db
;
30
}
31
32
public
function
step_1
(): void
33
{
34
$this->db->modifyTableColumn(
'svy_question'
,
'title'
, array(
35
'type'
=>
'text'
,
36
'length'
=> 200,
37
'notnull'
=>
false
38
));
39
}
40
}
ILIAS\SurveyQuestionPool\Setup\SurveyQuestionPoolDBUpdateSteps\prepare
prepare(\ilDBInterface $db)
Prepare the execution of the steps.
Definition:
class.SurveyQuestionPoolDBUpdateSteps.php:27
ILIAS\SurveyQuestionPool\Setup\SurveyQuestionPoolDBUpdateSteps
Definition:
class.SurveyQuestionPoolDBUpdateSteps.php:23
ILIAS\SurveyQuestionPool\Setup\SurveyQuestionPoolDBUpdateSteps\step_1
step_1()
Definition:
class.SurveyQuestionPoolDBUpdateSteps.php:32
ilDatabaseUpdateSteps
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
interface.ilDatabaseUpdateSteps.php:43
ilDBInterface
ILIAS\SurveyQuestionPool\Setup
Definition:
class.Agent.php:21
ILIAS\SurveyQuestionPool\Setup\SurveyQuestionPoolDBUpdateSteps\$db
ilDBInterface $db
Definition:
class.SurveyQuestionPoolDBUpdateSteps.php:25
components
ILIAS
SurveyQuestionPool
Setup
class.SurveyQuestionPoolDBUpdateSteps.php
Generated on Sun Aug 31 2025 23:03:54 for ILIAS by
1.8.13 (using
Doxyfile
)