Search in sources :

Example 16 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project openolat by klemens.

the class WithoutAuthorTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new WithoutAuthorItemSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), WITHOUT_AUTHOR);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ORES, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, WITHOUT_AUTHOR, true);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : WithoutAuthorItemSource(org.olat.modules.qpool.ui.datasource.WithoutAuthorItemSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 17 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project openolat by klemens.

the class BusinessGroupTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        boolean shareAdmin = isShareAdmin(ureq, group);
        QuestionItemsSource source = new SharedItemsSource(group, ureq.getIdentity(), ureq.getUserSession().getRoles(), shareAdmin);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, group, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, TABLE_PREFERENCE_PREFIX + group.getKey(), false);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : SharedItemsSource(org.olat.modules.qpool.ui.datasource.SharedItemsSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 18 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project openolat by klemens.

the class CollectionTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    QuestionItemsSource source = new CollectionOfItemsSource(questionItemCollection, ureq.getIdentity(), ureq.getUserSession().getRoles());
    if (questionsCtrl == null) {
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, questionItemCollection, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, TABLE_PREFERENCE_PREFIX + questionItemCollection.getKey(), false);
        questionsCtrl.setQuestionItemCollection(questionItemCollection);
    } else {
        questionsCtrl.updateSource(source);
    }
    return questionsCtrl;
}
Also used : QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController) CollectionOfItemsSource(org.olat.modules.qpool.ui.datasource.CollectionOfItemsSource)

Aggregations

WindowControl (org.olat.core.gui.control.WindowControl)18 QuestionItemsSource (org.olat.modules.qpool.ui.QuestionItemsSource)18 QuestionsController (org.olat.modules.qpool.ui.QuestionsController)18 OLATResourceable (org.olat.core.id.OLATResourceable)4 AllItemsSource (org.olat.modules.qpool.ui.datasource.AllItemsSource)2 CollectionOfItemsSource (org.olat.modules.qpool.ui.datasource.CollectionOfItemsSource)2 FinalItemsSource (org.olat.modules.qpool.ui.datasource.FinalItemsSource)2 MarkedItemsSource (org.olat.modules.qpool.ui.datasource.MarkedItemsSource)2 MyItemsSource (org.olat.modules.qpool.ui.datasource.MyItemsSource)2 MyTaxonomyLevelItemsSource (org.olat.modules.qpool.ui.datasource.MyTaxonomyLevelItemsSource)2 SharedItemsSource (org.olat.modules.qpool.ui.datasource.SharedItemsSource)2 WithoutAuthorItemSource (org.olat.modules.qpool.ui.datasource.WithoutAuthorItemSource)2 WithoutTaxonomyLevelItemSource (org.olat.modules.qpool.ui.datasource.WithoutTaxonomyLevelItemSource)2