| … | |
… | |
| 63 | use WeBWorK::ContentGenerator::Instructor::Index; |
63 | use WeBWorK::ContentGenerator::Instructor::Index; |
| 64 | use WeBWorK::ContentGenerator::Instructor::UserList; |
64 | use WeBWorK::ContentGenerator::Instructor::UserList; |
| 65 | use WeBWorK::ContentGenerator::Instructor::ProblemSetList; |
65 | use WeBWorK::ContentGenerator::Instructor::ProblemSetList; |
| 66 | use WeBWorK::ContentGenerator::Instructor::ProblemSetEditor; |
66 | use WeBWorK::ContentGenerator::Instructor::ProblemSetEditor; |
| 67 | use WeBWorK::ContentGenerator::Instructor::PGProblemEditor; |
67 | use WeBWorK::ContentGenerator::Instructor::PGProblemEditor; |
| 68 | use WeBWorK::ContentGenerator::Instructor::AddSet; |
|
|
| 69 | use WeBWorK::ContentGenerator::Test; |
68 | use WeBWorK::ContentGenerator::Test; |
| 70 | use WeBWorK::CourseEnvironment; |
69 | use WeBWorK::CourseEnvironment; |
| 71 | use WeBWorK::DB; |
70 | use WeBWorK::DB; |
| 72 | |
71 | |
| 73 | =head1 CONFIGURATION |
72 | =head1 CONFIGURATION |
| … | |
… | |
| 176 | return WeBWorK::ContentGenerator::Instructor::ProblemSetList->new($r, $ce, $db)->go; |
175 | return WeBWorK::ContentGenerator::Instructor::ProblemSetList->new($r, $ce, $db)->go; |
| 177 | } elsif ($instructorArgument eq "problemSetEditor") { |
176 | } elsif ($instructorArgument eq "problemSetEditor") { |
| 178 | return WeBWorK::ContentGenerator::Instructor::ProblemSetEditor->new($r, $ce, $db)->go(@components); |
177 | return WeBWorK::ContentGenerator::Instructor::ProblemSetEditor->new($r, $ce, $db)->go(@components); |
| 179 | } elsif ($instructorArgument eq "pgProblemEditor") { |
178 | } elsif ($instructorArgument eq "pgProblemEditor") { |
| 180 | return WeBWorK::ContentGenerator::Instructor::PGProblemEditor->new($r, $ce, $db)->go(@components); |
179 | return WeBWorK::ContentGenerator::Instructor::PGProblemEditor->new($r, $ce, $db)->go(@components); |
| 181 | } elsif ($instructorArgument eq "problemSetAdd") { |
|
|
| 182 | return WeBWorK::ContentGenerator::Instructor::AddSet->new($r, $ce, $db)->go(@components); |
|
|
| 183 | } |
180 | } |
| 184 | } elsif ($arg eq "options") { |
181 | } elsif ($arg eq "options") { |
| 185 | return WeBWorK::ContentGenerator::Options->new($r, $ce, $db)->go; |
182 | return WeBWorK::ContentGenerator::Options->new($r, $ce, $db)->go; |
| 186 | } elsif ($arg eq "feedback") { |
183 | } elsif ($arg eq "feedback") { |
| 187 | return WeBWorK::ContentGenerator::Feedback->new($r, $ce, $db)->go; |
184 | return WeBWorK::ContentGenerator::Feedback->new($r, $ce, $db)->go; |