]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/protected/Class/PoolRecord.php
baculum: Assign Baculum copyright to Kern Sibbald
[bacula/bacula] / gui / baculum / protected / Class / PoolRecord.php
index d6a146901ba9ff64083ed8243e51648c1156d9f0..c57e21eb35a3cd381362e04882f2af475b7ce10b 100644 (file)
@@ -1,53 +1,56 @@
-<?php\r
-/**\r
- * Bacula® - The Network Backup Solution\r
- * Baculum - Bacula web interface\r
- *\r
- * Copyright (C) 2013-2014 Marcin Haba\r
- *\r
- * The main author of Baculum is Marcin Haba.\r
- * The main author of Bacula is Kern Sibbald, with contributions from many\r
- * others, a complete list can be found in the file AUTHORS.\r
- *\r
- * You may use this file and others of this release according to the\r
- * license defined in the LICENSE file, which includes the Affero General\r
- * Public License, v3.0 ("AGPLv3") and some additional permissions and\r
- * terms pursuant to its AGPLv3 Section 7.\r
- *\r
- * Bacula® is a registered trademark of Kern Sibbald.\r
- */\r
\r
+<?php
+/*
+ * Bacula(R) - The Network Backup Solution
+ * Baculum   - Bacula web interface
+ *
+ * Copyright (C) 2013-2016 Kern Sibbald
+ *
+ * The main author of Baculum is Marcin Haba.
+ * The original author of Bacula is Kern Sibbald, with contributions
+ * from many others, a complete list can be found in the file AUTHORS.
+ *
+ * You may use this file and others of this release according to the
+ * license defined in the LICENSE file, which includes the Affero General
+ * Public License, v3.0 ("AGPLv3") and some additional permissions and
+ * terms pursuant to its AGPLv3 Section 7.
+ *
+ * This notice must be preserved when any source code is
+ * conveyed and/or propagated.
+ *
+ * Bacula(R) is a registered trademark of Kern Sibbald.
+ */
+
 class PoolRecord extends ActiveRecord {
-       const TABLE = 'Pool';\r
-\r
-       public $poolid;\r
-       public $name;\r
-       public $numvols;\r
-       public $maxvols;\r
-       public $useonce;\r
-       public $usecatalog;\r
-       public $acceptanyvolume;\r
-       public $volretention;\r
-       public $voluseduration;\r
-       public $maxvoljobs;\r
-       public $maxvolfiles;\r
-       public $maxvolbytes;\r
-       public $autoprune;\r
-       public $recycle;\r
-       public $actiononpurge;\r
-       public $pooltype;\r
-       public $labeltype;\r
-       public $labelformat;\r
-       public $enabled;\r
-       public $scratchpoolid;\r
-       public $recyclepoolid;\r
-       public $nextpoolid;\r
-       public $migrationhighbytes;\r
-       public $migrationlowbytes;\r
-       public $migrationtime;\r
-       \r
+       const TABLE = 'Pool';
+
+       public $poolid;
+       public $name;
+       public $numvols;
+       public $maxvols;
+       public $useonce;
+       public $usecatalog;
+       public $acceptanyvolume;
+       public $volretention;
+       public $voluseduration;
+       public $maxvoljobs;
+       public $maxvolfiles;
+       public $maxvolbytes;
+       public $autoprune;
+       public $recycle;
+       public $actiononpurge;
+       public $pooltype;
+       public $labeltype;
+       public $labelformat;
+       public $enabled;
+       public $scratchpoolid;
+       public $recyclepoolid;
+       public $nextpoolid;
+       public $migrationhighbytes;
+       public $migrationlowbytes;
+       public $migrationtime;
+
        public static function finder($className = __CLASS__) {
                return parent::finder($className);
-       }\r
-}\r
+       }
+}
 ?>
\ No newline at end of file