コード例 #1
0
ファイル: download.class.php プロジェクト: nvh3010/Aeolus
 public function __construct($contentTemplate)
 {
     parent::__construct($contentTemplate);
     $this->outlierInterpolation();
     $this->replaceCosmLinks();
     $this->replaceSosTimes();
 }
コード例 #2
0
ファイル: table.class.php プロジェクト: nvh3010/Aeolus
 public function __construct($contentTemplate)
 {
     parent::__construct($contentTemplate);
     $this->outlierInterpolation();
     if ($this->dataSuccess) {
         $this->fillTable();
     }
 }
コード例 #3
0
ファイル: diagram.class.php プロジェクト: nvh3010/Aeolus
 public function __construct($contentTemplate)
 {
     parent::__construct($contentTemplate);
     $this->outlierInterpolation();
     if ($this->dataSuccess) {
         $this->fillDiagram();
         $this->callSensor();
     }
 }