Example #1
0
 public function testDeleteCore()
 {
     $this->assertTrue(DM\Core::delete($this->testCoreName), 'Cant delete core');
 }
Example #2
0
 /**
  * get core config stored in casebox.cores table
  *
  * @return array
  */
 public static function getPlatformConfigForCore($coreName)
 {
     $rez = array();
     $r = DM\Core::read($coreName);
     if (isset($r['cfg'])) {
         $rez = $r['cfg'];
         $rez['core_id'] = $r['id'];
         $rez['core_status'] = $r['active'];
     } else {
         trigger_error("ERROR: Config::getPlatformConfigForCore(" . $coreName . ") cfg=" . print_r($r, true), E_USER_WARNING);
         // throw new \Exception('Error getting core config', 1);
     }
     return $rez;
 }