mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-02-08 20:48:40 +00:00
Remove calendar pass
This commit is contained in:
parent
829198a696
commit
fa98ff1575
|
|
@ -44,7 +44,6 @@ class Installer extends InstallerAbstract
|
||||||
'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'calendar` (
|
'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'calendar` (
|
||||||
`calendar_id` int(11) NOT NULL AUTO_INCREMENT,
|
`calendar_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`calendar_name` varchar(255) NOT NULL,
|
`calendar_name` varchar(255) NOT NULL,
|
||||||
`calendar_password` varchar(255) DEFAULT NULL,
|
|
||||||
`calendar_description` varchar(255) NOT NULL,
|
`calendar_description` varchar(255) NOT NULL,
|
||||||
`calendar_created_by` int(11) NOT NULL,
|
`calendar_created_by` int(11) NOT NULL,
|
||||||
`calendar_created_at` datetime NOT NULL,
|
`calendar_created_at` datetime NOT NULL,
|
||||||
|
|
|
||||||
|
|
@ -76,14 +76,6 @@ class Calendar
|
||||||
*/
|
*/
|
||||||
private $date = null;
|
private $date = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* Password
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
* @since 1.0.0
|
|
||||||
*/
|
|
||||||
private $password = null;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Events.
|
* Events.
|
||||||
*
|
*
|
||||||
|
|
@ -133,26 +125,6 @@ class Calendar
|
||||||
$this->name = $name;
|
$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
|
* @return string
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user