|
@@ -8,10 +8,9 @@
|
|
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
|
|
-class Album {
|
|
|
|
|
|
+class Album extends Module {
|
|
|
|
|
|
private $database = null;
|
|
private $database = null;
|
|
- private $plugins = null;
|
|
|
|
private $settings = null;
|
|
private $settings = null;
|
|
private $albumIDs = null;
|
|
private $albumIDs = null;
|
|
|
|
|
|
@@ -27,20 +26,6 @@ class Album {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- private function plugins($name, $location, $args) {
|
|
|
|
-
|
|
|
|
- if (!isset($this->plugins, $name, $location, $args)) return false;
|
|
|
|
-
|
|
|
|
- # Parse
|
|
|
|
- $location = ($location===0 ? 'before' : 'after');
|
|
|
|
-
|
|
|
|
- # Call plugins
|
|
|
|
- $this->plugins->activate($name . ":" . $location, $args);
|
|
|
|
-
|
|
|
|
- return true;
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public function add($title = 'Untitled', $public = 0, $visible = 1) {
|
|
public function add($title = 'Untitled', $public = 0, $visible = 1) {
|
|
|
|
|
|
if (!isset($this->database)) return false;
|
|
if (!isset($this->database)) return false;
|