69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2018 (original work) Open Assessment Technologies SA ;
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @author Jean-Sébastien Conan <jean-sebastien@taotesting.com>
|
|
*/
|
|
|
|
namespace oat\taoOutcomeUi\model;
|
|
|
|
|
|
use oat\oatbox\service\ConfigurableService;
|
|
|
|
class ResultsViewerService extends ConfigurableService
|
|
{
|
|
const SERVICE_ID = 'taoOutcomeUi/resultsViewer';
|
|
|
|
const OPTION_DEFAULT_ITEM_TYPE = 'defaultItemType';
|
|
|
|
/**
|
|
* Sets the default item type the viewer should manage
|
|
* @param string $type
|
|
*/
|
|
public function setDefaultItemType($type)
|
|
{
|
|
$this->setOption(self::OPTION_DEFAULT_ITEM_TYPE, $type);
|
|
}
|
|
|
|
/**
|
|
* Gets the default item type the viewer should manage
|
|
* @return string
|
|
*/
|
|
public function getDefaultItemType()
|
|
{
|
|
if ($this->hasOption(self::OPTION_DEFAULT_ITEM_TYPE)) {
|
|
return $this->getOption(self::OPTION_DEFAULT_ITEM_TYPE);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Gets the type of item the viewer should manage
|
|
* @todo determine the item type from the $resultIdentifier
|
|
* @param string $resultIdentifier
|
|
* @return string
|
|
*/
|
|
public function getDeliveryItemType($resultIdentifier)
|
|
{
|
|
return $this->getDefaultItemType();
|
|
}
|
|
}
|