File: /home/joderbya/2bsasistemas.co.mz/gestaofrota/classes/controls/ViewUserControl.php
<?php
class ViewUserControl extends ViewControl
{
/**
* Set to true, if it is custom user control
* @var boolean
*/
public $userControl;
public function initUserControl()
{
}
/**
* Control settings filling
*/
public function init()
{
$this->userControl = true;
// We need to add this dependencies ViewControl.js - for debug.
// For build we need to add RunnerAll.js
//$this->AddJSFile("include/runnerJS/controls/".$this->viewFormat.".js", 'include/runnerJS/viewControls/ViewControl.js');
}
/**
* Get the field's content that will be exported
* @prarm &Array data
* @prarm String keylink
* @return String
*/
public function getExportValue(&$data, $keylink = "")
{
return $data[ $this->field ];
}
/**
* Check for need to load the javascript files.
* Javascript files for user controls are always loaded.
* @return boolean
*/
public function neededLoadJSFiles()
{
return true;
}
}
?>