From fa98ff1575fe01218573ae2e5aee6d6b93c705ce Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 14 Oct 2017 21:32:29 +0200 Subject: [PATCH] Remove calendar pass --- Admin/Installer.php | 1 - Models/Calendar.php | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index 4bede8d..f3f7187 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -44,7 +44,6 @@ class Installer extends InstallerAbstract 'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'calendar` ( `calendar_id` int(11) NOT NULL AUTO_INCREMENT, `calendar_name` varchar(255) NOT NULL, - `calendar_password` varchar(255) DEFAULT NULL, `calendar_description` varchar(255) NOT NULL, `calendar_created_by` int(11) NOT NULL, `calendar_created_at` datetime NOT NULL, diff --git a/Models/Calendar.php b/Models/Calendar.php index d3a6fe7..3d4fffc 100644 --- a/Models/Calendar.php +++ b/Models/Calendar.php @@ -76,14 +76,6 @@ class Calendar */ private $date = null; - /** - * Password - * - * @var string - * @since 1.0.0 - */ - private $password = null; - /** * Events. * @@ -133,26 +125,6 @@ class Calendar $this->name = $name; } - /** - * @return string - * - * @since 1.0.0 - */ - public function getPassword() - { - return $this->password; - } - - /** - * @param string $password Calendar password/title - * - * @since 1.0.0 - */ - public function setPassword($password) - { - $this->password = $password; - } - /** * @return string *