]> git.sur5r.net Git - bacula/bacula/commitdiff
baculum: Tweak remove unused api get methods Release-7.9.4
authorMarcin Haba <marcin.haba@bacula.pl>
Sat, 10 Jun 2017 16:24:22 +0000 (18:24 +0200)
committerMarcin Haba <marcin.haba@bacula.pl>
Sat, 10 Jun 2017 16:24:22 +0000 (18:24 +0200)
12 files changed:
gui/baculum/protected/API/Pages/API/BVFSClearCache.php
gui/baculum/protected/API/Pages/API/BVFSLsDirs.php
gui/baculum/protected/API/Pages/API/BVFSLsFiles.php
gui/baculum/protected/API/Pages/API/BVFSRestore.php
gui/baculum/protected/API/Pages/API/BVFSUpdate.php
gui/baculum/protected/API/Pages/API/ConfigDirTest.php
gui/baculum/protected/API/Pages/API/ConsoleCommand.php
gui/baculum/protected/API/Pages/API/JSONToolsTest.php
gui/baculum/protected/API/Pages/API/JobCancel.php
gui/baculum/protected/API/Pages/API/PoolUpdate.php
gui/baculum/protected/API/Pages/API/PoolUpdateVolumes.php
gui/baculum/protected/API/Pages/API/RestoreRun.php

index 560b895d9c05ba57f5af23b8cddb1be2049bde91..4f8da7f6096df1aa603cfaf9c4ae7f9ba1971d6d 100644 (file)
@@ -22,8 +22,6 @@
 
 class BVFSClearCache extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($ids, $params) {
                $result = $this->getModule('bconsole')->bconsoleCommand($this->director, array('.bvfs_clear_cache', 'yes'), $this->user);
                $this->output = $result->output;
index 4baca60571a97792ecd6000d1876047836b19541..b4a1c7c2c7437d252bf56f9bf645fa363e6b4456 100644 (file)
@@ -22,8 +22,6 @@
  
 class BVFSLsDirs extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($param, $ids) {
                $limit = intval($this->Request['limit']);
                $offset = intval($this->Request['offset']);
index 630bf8eaffaafd447d5e03ca025d0c7a52bf6306..86e63fca6afd1bdef282e8efe2c8bcc1124265d7 100644 (file)
@@ -22,8 +22,6 @@
  
 class BVFSLsFiles extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($param, $ids) {
                $limit = intval($this->Request['limit']);
                $offset = intval($this->Request['offset']);
index 0d16ce1d1938a08ecc56aab8289bda4504468287..73eaa66e78e8910ab5d6030f855ab77b085a0ce9 100644 (file)
@@ -21,8 +21,6 @@
  */
  
 class BVFSRestore extends BaculumAPIServer {
-       public function get() {}
-
        public function create($params) {
                $jobids = property_exists($params, 'jobids') ? $params->jobids : null;
                $fileids = property_exists($params, 'fileid') ? $params->fileid : null;
index 5c2bda2226c0ee697617078b7863a722d3e51b01..760bbb66ff2eae495029d8f7640311eb0f6ecbca 100644 (file)
@@ -22,8 +22,6 @@
 
 class BVFSUpdate extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($param, $ids) {
                $isValid = true;
                if (property_exists($ids, 'jobids')) {
index 863a825cb00a0b5bad036bdf746ea4ab3221a983..f749e57d8d6506fa1ec11b402f39804238ce991d 100644 (file)
@@ -22,8 +22,6 @@
 
 class ConfigDirTest extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($id, $params) {
                $config_dir = property_exists($params, 'path') ? $params->path : '';
                $result = $this->getModule('bacula_config')->testConfigDir($config_dir);
index 96c4b390e5e7fc5ed5e5ce9a98c8f94f898b544c..d76432e1b2ff3dee556daf90ec60a436db3ad801 100644 (file)
@@ -22,8 +22,6 @@
  
 class ConsoleCommand extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($id, $params) {
                $params = (array)$params;
                $console = $this->getModule('bconsole')->bconsoleCommand($this->director, $params, $this->user);
index f91f121106c02c4a55e5b66f507c0f575c4a5374..f114359ec54f5d63e72f537b8c46d7f286055bb5 100644 (file)
@@ -22,8 +22,6 @@
 
 class JSONToolsTest extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($id, $params) {
                $type = property_exists($params, 'type') ? $params->type : '';
                $path = property_exists($params, 'path') ? $params->path : '';
index 53e48e0a0ab4447072759e1714cb1e2c353bd9a2..a3d344d7310706beb77e534abc9ea89bbdd6193f 100644 (file)
@@ -22,8 +22,6 @@
  
 class JobCancel extends BaculumAPIServer {
 
-       public function get() {}
-
        public function set($id, $params) {
                $jobid = intval($id);
                $job = $this->getModule('job')->getJobById($jobid);
index 85e08e531677d124f522693e7f1cea7daf24e7c8..394f82ad744f66c91cdea4c4c6527b178373b764 100644 (file)
@@ -21,7 +21,6 @@
  */
  
 class PoolUpdate extends BaculumAPIServer {
-       public function get() {}
 
        public function set($id, $params) {
                $pool = $this->getModule('pool')->getPoolById($id);
@@ -36,4 +35,4 @@ class PoolUpdate extends BaculumAPIServer {
        }
 }
 
-?>
\ No newline at end of file
+?>
index c616ba43ce01cfdd1a428966809d0a8f5cb675f6..d18a52721c09f61b4e946acd32b8bca86b083b28 100644 (file)
@@ -21,7 +21,6 @@
  */
  
 class PoolUpdateVolumes extends BaculumAPIServer {
-       public function get() {}
 
        public function set($id, $params) {
                $pool = $this->getModule('pool')->getPoolById($id);
index f7ed970515d6fcd96119e170879a43eeadfd9bc7..a60e627c0be01ab2b5b1636af057889de204afe5 100644 (file)
@@ -24,8 +24,6 @@ Prado::using('Application.API.Class.APIDbModule');
  
 class RestoreRun extends BaculumAPIServer {
 
-       public function get() {}
-
        public function create($params) {
                $rfile = property_exists($params, 'rpath') ? $params->rpath : null;