settings->get($table."::".$record); } public function dbSet($table, $record, $value) { return $this->settings->set($table."::".$record, $value); } /* | Files | | fileRead("path"); | fileMake("path"); | fileWipe("path"); */ public function fileRead($path) { return shell_exec("cat ".escapeshellarg($path).";"); } public function fileMake($path) { return shell_exec("touch ".escapeshellarg($path).";"); } public function fileWipe($path) { return shell_exec("rm ".escapeshellarg($path).";"); } /* | Extensions | | extension("identifier"); */ public function extension($identifier) { if(str_contains($this->fileRead("::f/.blueprint/extensions/blueprint/private/db/installed_extensions"), $identifier.',')) { return true; } else { return false; } } }