70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
|
|
/**
|
|
* 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) 2016 (original work) Open Assessment Technologies SA ;
|
|
*/
|
|
|
|
/**
|
|
* This plugin displays the item label (from
|
|
*
|
|
* @author Bertrand Chevrier <bertrand@taotesting.com>
|
|
*/
|
|
define([
|
|
'jquery',
|
|
'lodash',
|
|
'i18n',
|
|
'core/plugin'
|
|
], function($, _, __, pluginFactory){
|
|
'use strict';
|
|
|
|
/**
|
|
* Returns the configured plugin
|
|
* @returns {Function} the plugin
|
|
*/
|
|
return pluginFactory({
|
|
|
|
name : 'title',
|
|
|
|
/**
|
|
* Hook to the host's init
|
|
*/
|
|
init : function init(){
|
|
var config = this.getHost().getConfig();
|
|
var item = this.getHost().getItem();
|
|
|
|
if(item && !_.isEmpty(item.attr('title'))){
|
|
this.title = item.attr('title');
|
|
}
|
|
else if(config && config.properties && config.properties.label){
|
|
this.title = config.properties.label;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Hook to the host's render
|
|
*/
|
|
render : function render(){
|
|
|
|
if(this.title){
|
|
//attach the element to the title area
|
|
this.getAreaBroker()
|
|
.getTitleArea()
|
|
.text(this.title);
|
|
}
|
|
}
|
|
});
|
|
});
|