1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
<?php
/**
* Functions used in the admin page
*
* This file is part of Zoph.
*
* Zoph is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Zoph is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package Zoph
* @author Jeroen Roos
*/
use template\template;
use zoph\app;
/**
* This is a class to generate the admin page
*
* @package Zoph
* @author Jeroen Roos
*/
class admin {
public $name;
public $url;
public $desc;
public $icon;
private static $pages=array();
/**
* Create a new entry in the admin page
* @param string Name
* @param string Description
* @param string URL to point to
* @param string Icon name (only <filename>.png, no path)
*/
public function __construct($name, $desc, $url, $icon) {
$this->name=$name;
$this->url=app::getBasePath() . $url;
$this->desc=$desc;
$this->icon=template::getImage("icons/" . $icon);
}
/**
* Get an array of all entries in the admin page
*/
public static function getArray() {
if (empty(static::$pages)) {
static::createArray();
}
return static::$pages;
}
/**
* Fill the static array containing the entries for the admin page
*/
private static function createArray() {
static::$pages=array(
new admin("users", "create or modify user accounts", "user/users", "users.png"),
new admin("groups", "create or modify user groups", "group/groups", "groups.png"),
new admin("pages", "create or modify zoph pages", "page/pages", "pages.png"),
new admin("pagesets", "create or modify pagesets", "pageset/pagesets", "pagesets.png"),
new admin("tracks", "create or modify GPS tracks", "track/tracks", "tracks.png"),
new admin("backup", "download a backup of the database", "backup", "backup.png"),
new admin("config", "modify configuration items", "config", "configure.png"),
new admin("default preferences", "change default preferences for new users", "user/prefs?user_id=-1", "prefs.png")
);
}
}
|