<?php
require_once('lib/exception/RebootException.class.php');
require_once('lib/exception/RouterException.class.php');
+require_once('lib/exception/NotImplementedException.class.php');
require_once('CryptLib/CryptLib.php');
require_once('lib/trait/Connection.class.php');
require_once('lib/trait/CryptLib.class.php');
* class version
* @const string
*/
- const VERSION = '1.0.4';
+ const VERSION = '1.0.5';
/**
* router url
--- /dev/null
+<?php
+/**
+ * @author Jan Altensen (Stricted)
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright 2015 Jan Altensen (Stricted)
+ */
+class NotImplementedException extends Exception {
+}
$data = $this->getData('Portforwarding');
$data = $this->getValues($data);
- //print_r($data);
-
if (isset($data['addportuw'])) {
return $data['addportuw'];
}
* @param integer $device
*/
public function addPortforwardingEntry ($name, $device) {
+ throw new NotImplementedException();
+
// TODO: find a way to make this possible
/* fields:
*
* @param integer $device
*/
public function editPortforwardingEntry ($id, $name, $device) {
+ throw new NotImplementedException();
// TODO: find a way to make this possible
}
}