drupal/modules/system.module

356 lines
18 KiB
Plaintext
Raw Normal View History

<?php
// $Id$
function system_help($section = "admin/help#system") {
global $base_url;
$output = "";
switch ($section) {
case 'admin/system':
$output = t("General configuration options for your site. Set up the name of the site, e-mail address used in mail-outs, clean URL options, caching, etc.");
break;
case 'admin/system/themes':
$output = t("Select which themes are available to your users and specify the default theme.");
break;
case 'admin/system/modules':
$output = t("Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. On the left hand side click on the name of the module for their individual configurations. Once a module is enabled, you will need to grant %permissions to users.", array("%permissions" => l("permissions", "admin/user/permission")));
break;
case 'admin/system/filters':
$output = t("Filters fit between the raw text in a node and the HTML output. They allow you to replace text selectively. Uses include automatic conversion of emoticons into graphics and filtering HTML content from users' submissions.");
break;
case 'admin/help#system':
case 'admin/system/help':
$output .= "<p>Drupal comes with system-wide defaults but the setting-module provides control over many Drupal preferences, behaviours including visual and operational settings.</p>";
$output .= "<h3><a id=\"cron\">Cron</a></h3>";
// Start of system_help_cron
$output .= "<p>Some modules require regularly scheduled actions, such as cleaning up logfiles. Cron, which stands for chronograph, is a periodic command scheduler executing commands at intervals specified in seconds. It can be used to control the execution of daily, weekly and monthly jobs (or anything with a period measured in seconds). Automating tasks is one of the best ways to keep a system running smoothly, and if most of your administration does not require your direct involvement, cron is an ideal solution.</p>";
$output .= "<p>Whenever %cron-link is accessed, cron will run: it calls the _cron hook in each module allowing the module to run tasks if they have not been executed in the last <i>n</i> seconds, where n is the period of that task. When all the tasks are finished, cron is done.</p>";
$output .= "<p>The recommended way to set up your cron system is to set up a Unix/Linux crontab entry (see \"man crontab\") that frequently visits %cron-link. Note that cron does not guarantee the commands will be executed at the specified interval. However, Drupal will try its best to run the tasks as close to the specified intervals as possible. The more you visit cron.php, the more accurate cron will be.</p>";
$output .= "<p>If your hosting company does not allow you to set up crontab entries, you can always ask someone else to set up an entry for you. After all, virtually any Unix/Linux machine with access to the internet can set up a crontab entry to frequently visit %cron-link.</p>";
$output .= "<p>For the Unix/Linux crontab itself, use a browser like %lynx or %wget but make sure the process terminates: either use <code>/usr/bin/lynx -source $base_url/cron.php</code> or <code>/usr/bin/wget -o /dev/null -O /dev/null %cron-link</code>. Take a look at the example scripts in the <code>scripts</code>-directory. Make sure to adjust them to fit your needs. A good crontab line to run the cron script once every hour would be:";
$output .= "<pre> 00 * * * * /home/www/drupal/scripts/cron-lynx.sh</pre>";
$output .= "Note that it is essential to access <code>cron.php</code> using a browser on the web site's domain; do not run it using command line PHP and avoid using <code>localhost</code> or <code>127.0.0.1</code> or some of the environment varibles will not be set correctly and features may not work as expected.</p>";
// End of system_help_cron
$output .= "<h3><a id=\"cache\">Cache</a></h3>";
// Start of system_help_cache
$output .= "<p>Drupal has a caching mechanism which stores dynamically generated web pages in a database. By caching a web page, Drupal does not have to create the page each time someone wants to view it, instead it takes only one SQL query to display it, reducing response time and the server's load. Only pages requested by \"anonymous\" users are cached.</p>";
// End of system_help_cache
$output = t($output, array("%cron-link" => "<a href=\"$base_url/cron.php\
\">$base_url/cron.php</a>", "%lynx" => "<a href=\"http://lynx.browser.org\">lynx</a>", "%wget" => "<a href=\"http://www.gnu.org/software/wget/wget.html\">wget</a>" ));
break;
case 'admin/system/modules#description':
$output = t("Configuration system that lets administrators modify the workings of the site.");
break;
}
return $output;
2002-02-07 19:59:37 +00:00
}
function system_perm() {
return array("administer site configuration", "access administration pages", "bypass input data check", "create php content");
}
function system_link($type) {
if ($type == "system") {
if (user_access("administer site configuration")) {
menu("admin/system", t("configuration"), "system_admin", 3);
menu("admin/system/themes", t("themes"), "system_admin", 2);
foreach (theme_list(1) as $theme) {
// NOTE: refresh the list because some themes might have been enabled/disabled.
include_once "$theme->filename";
$function = $theme->name ."_settings";
if (function_exists($function)) {
menu("admin/system/themes/$theme->name", $theme->name, "system_admin");
}
}
menu("admin/system/modules", t("modules"), "system_admin", 3);
foreach (module_list(1) as $name) {
// NOTE: refresh the list because some modules might have been enabled/disabled.
if (module_hook($name, "settings")) {
menu("admin/system/modules/$name", t($name), "system_admin");
}
}
menu("admin/system/filters", t("filters"), "system_admin", 4);
menu("admin/system/help", t("help"), "system_help", 9);
}
}
}
function system_user($type, &$edit, $user) {
$options = "<option value=\"\"". (("" == $key) ? " selected=\"selected\"" : "") .">". t("Default theme") ."</option>\n";
if ($type == "edit_form" && count($themes = theme_list()) > 1) {
foreach ($themes as $key => $value) {
$options .= "<option value=\"$key\"". (($edit["theme"] == $key) ? " selected=\"selected\"" : "") .">$key - $value->description</option>\n";
}
$output .= form_item(t("Theme"), "<select name=\"edit[theme]\">$options</select>", t("Selecting a different theme will change the look and feel of the site."));
}
if ($type == "edit_form") {
for ($zone = -43200; $zone <= 46800; $zone += 3600) $zones[$zone] = date(variable_get("date_format_long", "l, F dS, Y - g:ia"), time() - date("Z") + $zone) ." (GMT ". $zone / 3600 .")";
$output .= form_select(t("Time zone"), "timezone", $edit["timezone"], $zones, t("Select what time you currently have and your time zone settings will be set appropriate."));
}
return $output;
}
function system_view_general() {
2003-10-02 08:28:19 +00:00
global $conf;
// general settings:
$output .= "<h3>". t("General settings") ."</h3>\n";
$output .= form_textfield(t("Name"), "site_name", variable_get("site_name", "drupal"), 70, 70, t("The name of this web site."));
$output .= form_textfield(t("E-mail address"), "site_mail", variable_get("site_mail", ini_get("sendmail_from")), 70, 128, t("A valid e-mail address for this website, used by the auto-mailer during registration, new password requests, notifications, etc."));
$output .= form_textfield(t("Slogan"), "site_slogan", variable_get("site_slogan", ""), 70, 128, t("The slogan of this website. Some themes display a slogan when available."));
$output .= form_textarea(t("Mission"), "site_mission", variable_get("site_mission", ""), 70, 5, t("Your site's mission statement or focus."));
$output .= form_textarea(t("Footer message"), "site_footer", variable_get("site_footer", ""), 70, 5, t("This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages."));
$output .= form_textfield(t("Anonymous user"), "anonymous", variable_get("anonymous", "Anonymous"), 70, 70, t("The name used to indicate anonymous users."));
$output .= form_textfield(t("Default front page"), "site_frontpage", variable_get("site_frontpage", "node"), 70, 70, t("The home page displays content from this relative URL. If you are not using clean URLs, specify the part after '?q='. If unsure, specify 'node'."));
2003-02-14 19:52:45 +00:00
$output .= form_select(t("Clean URLs"), "clean_url", variable_get("clean_url", 0), array(t("Disabled"), t("Enabled")), t("Enable or disable clean URLs. If enabled, you'll need <code>ModRewrite</code> support. See also the <code>.htaccess</code> file in Drupal's top-level directory."));
$output .= "<hr />\n";
2001-06-30 20:23:33 +00:00
// caching:
$output .= "<h3>". t("Cache settings") ."</h3>\n";
2003-09-28 14:11:49 +00:00
$output .= form_select(t("Cache support"), "cache", variable_get("cache", 0), array(t("Disabled"), t("Enabled")), t("Enable or disable the caching of rendered pages. When caching is enabled, Drupal will flush the cache when required to make sure updates take effect immediately. Check the %documentation for information on Drupal's cache system.", array("%documentation" => l(t("cache documentation"), "admin/system/help#cache"))));
$output .= "<hr />\n";
2001-06-30 20:23:33 +00:00
// submission settings:
$output .= "<h3>". t("Submission settings") ."</h3>\n";
$rate = array(-10000 => t("Disabled"), 1 => t("Maximum 1 every second"), 5 => t("Maximum 1 every 5 seconds"), 15 => t("Maximum 1 every 15 seconds"), 30 => t("Maximum 1 every 30 seconds"), 60 => t("Maximum 1 every minute"), 300 => t("Maximum 1 every 5 minutes"), 900 => t("Maximum 1 every 15 minutes"), 1800 => t("Maximum 1 every 30 minutes"), 3600 => t("Maximum 1 every hour"), 21600 => t("Maximum 1 every 6 hours"), 43200 => t("Maximum 1 every 12 hours"));
$output .= form_select(t("Maximum node rate"), "max_node_rate", variable_get("max_node_rate", 900), $rate, t("The maximum submission rate for nodes. Its purpose is to stop potential abuse or denial of service attacks."));
$output .= form_select(t("Maximum comment rate"), "max_comment_rate", variable_get("max_comment_rate", 120), $rate, t("The maximum submission rate for comments. Its purpose is to stop potential abuse or denial of service attacks."));
$output .= "<hr />\n";
// date settings:
$output .= "<h3>". t("Date format settings") ."</h3>\n";
// date settings: possible date formats
$dateshort = array("m/d/Y - H:i", "d/m/Y - H:i", "Y/m/d - H:i",
"m/d/Y - g:ia", "d/m/Y - g:ia", "Y/m/d - g:ia",
"M j Y - H:i", "j M Y - H:i", "Y M j - H:i",
"M j Y - g:ia", "j M Y - g:ia", "Y M j - g:ia");
$datemedium = array("D, m/d/Y - H:i", "D, d/m/Y - H:i", "D, Y/m/d - H:i",
"F j, Y - H:i", "j F, Y - H:i", "Y, F j - H:i",
"D, m/d/Y - g:ia", "D, d/m/Y - g:ia", "D, Y/m/d - g:ia",
"F j, Y - g:ia", "j F, Y - g:ia", "Y, F j - g:ia");
$datelong = array("l, F j, Y - H:i", "l, j F, Y - H:i", "l, Y, F j - H:i",
"l, F j, Y - g:ia", "l, j F, Y - g:ia", "l, Y, F j - g:ia");
// date settings: construct choices for user
foreach ($dateshort as $f) {
$dateshortchoices[$f] = format_date(time(), "custom", $f);
}
foreach ($datemedium as $f) {
$datemediumchoices[$f] = format_date(time(), "custom", $f);
}
foreach ($datelong as $f) {
$datelongchoices[$f] = format_date(time(), "custom", $f);
}
$output .= form_select(t("Date format (short)"), "date_format_short", variable_get("date_format_short", $dateshort[0]), $dateshortchoices, t("The short format of date display."));
$output .= form_select(t("Date format (medium)"), "date_format_medium", variable_get("date_format_medium", $datemedium[0]), $datemediumchoices, t("The medium sized date display."));
$output .= form_select(t("Date format (long)"), "date_format_long", variable_get("date_format_long", $datelong[0]), $datelongchoices, t("Longer date format used for detailed display."));
- Bugfix: renamed the SQL field 'types' to 'nodes' because 'types' is a reserved keyword in MySQL 4. This fixes critical bug #1618. Patch by Marco. ==> This fix requires to run update.php! - Bugfix: made sessions work without warnings when register_globals is turned off. The solution is to use $_SESSION instead of session_register(). This fixes critical bug #1797. Patch by Marco. - Bugfix: sometimes error messages where being discarded when previewing a node. Patch by Craig Courtney. - Bugfix: fixed charset problems. This fixes critical bug #1549. Patch '0023.charset.patch' by Al. - Code improvements: removed some dead code from the comment module. Patch by Marco. - Documentation improvements: polished the node module help texts and form descriptions. Patch '0019.node.module.help.patch' by Al. - CSS improvements all over the map! Patch '0021.more.css.patch' by Al. - GUI improvements: improved the position of Druplicon in the admin menu. Patch '0020.admin.logo.patch' by Al. - GUI improvements: new logos for theme Marvin and theme UnConeD. Logos by Kristjan Jansen. - GUI improvements: small changes to the output emitted by the profile module. Suggestions by Steven Wittens. - GUI improvements: small fixes to Xtemplate. Patch '0022.xtemplate.css.patch' by Al. TODO: - Some modules such as the buddy list module and the annotation module in the contributions repository are also using session_register(). They should be updated. We should setup a task on Drupal. - There is code emitting '<div align="right">' which doesn't validate. - Does our XML feeds validate with the charset changes? - The forum module's SQL doesn't work properly on PostgreSQL.
2003-06-04 18:24:39 +00:00
return $output;
}
function system_view_module($name) {
if (module_hook($name, "settings")) {
$output .= "<h3><a id=\"$name\">". ucfirst(t("$name")) ." ". t("settings") ."</a></h3>". module_invoke($name, "settings") ."<hr />\n";
}
return $output;
}
function system_view_theme($name) {
$themes = theme_list();
$theme = $themes[$name];
if ($theme) {
include_once "$theme->filename";
$function = $theme->name ."_settings";
if (function_exists($function)) {
$output .= $function();
}
}
else {
$output = t("Invalid theme specified");
}
return $output;
}
function system_view_filters() {
return implode("\n", module_invoke_all("conf_filters"));
}
function system_save_settings($edit = array()) {
if ($edit["type"]) {
db_query("UPDATE {system} SET status = '0' WHERE type = '%s'", $edit["type"]);
foreach ($edit["status"] as $filename => $status) {
db_query("UPDATE {system} SET status = %d WHERE filename = '$filename'", $status);
}
if ($edit["type"] == "theme") {
variable_set("theme_default", $edit["theme_default"]);
}
}
else {
foreach ($edit as $name => $value) {
variable_set($name, $value);
}
}
cache_clear_all();
return t("the configuration options have been saved.");
}
function system_reset_default($edit = array()) {
foreach ($edit as $name => $value) {
variable_del($name);
}
cache_clear_all();
return t("the configuration options have been reset to their default values.");
}
function system_view($type, $arg = "") {
$required = array("modules/admin.module", "modules/user.module", "modules/system.module", "modules/watchdog.module");
$links = array();
switch ($type) {
2002-12-24 15:40:32 +00:00
case "filters":
$form = system_view_filters();
break;
case "modules":
if ($arg) {
$form = system_view_module($arg);
}
else {
$form = system_listing("module", "modules", $required);
}
break;
case "themes":
if ($arg) {
$form = system_view_theme($arg);
}
else {
$form = system_listing("theme", "themes", $required);
}
break;
default:
$form = system_view_general();
break;
}
$form .= form_submit(t("Save configuration"));
$form .= form_submit(t("Reset to defaults"));
return form($form);
}
function system_dirscan($dir, $mask, $nomask = array(".", "..", "CVS")) {
$files = array();
if (is_dir($dir) && $handle = opendir($dir)) {
while ($file = readdir($handle)) {
if (!in_array($file, $nomask)) {
if (is_dir("$dir/$file")) {
$files = array_merge($files, system_dirscan("$dir/$file", $mask, $nomask));
}
elseif (ereg($mask, $file)) {
$name = basename($file);
$files["$dir/$file"]->filename = "$dir/$file";
$files["$dir/$file"]->name = substr($name, 0, strrpos($name, '.'));
}
}
}
closedir($handle);
}
return $files;
}
function system_listing($type, $directory, $required = array()) {
// Make sure we set $type correctly
$type = $type != 'theme' ? "module" : "theme";
// Find files in the directory.
$files = system_dirscan($directory, "\.$type$");
// Extract current files from database.
$result = db_query("SELECT filename, type, status FROM {system} WHERE type = '%s'", $type);
while ($file = db_fetch_object($result)) {
if (is_object($files[$file->filename])) {
foreach ($file as $key => $value) {
$files[$file->filename]->$key = $value;
}
}
}
ksort($files);
$header = array(t("name"), t("description"), t("status"));
foreach ($files as $filename => $file) {
include_once($filename);
if ($type == "module") {
$info->name = module_invoke($file->name, "help", "admin/system/modules#name") ? module_invoke($file->name, "help", "admin/system/modules#name") : module_invoke($file->name, "system", "name") ? module_invoke($file->name, "system", "name") : $file->name;
$info->description = module_invoke($file->name, "help", "admin/system/modules#description") ? module_invoke($file->name, "help", "admin/system/modules#description") : module_invoke($file->name, "system", "description");
}
elseif ($type == "theme") {
$class = "Theme_$file->name";
if (class_exists($class)) {
$theme =& new $class;
$info->name = $theme->system("name") ? $theme->system("name") : $file->name;
$info->description = $theme->system("description");
$themes[] = $info->name;
}
else {
unset($files[$filename]);
}
}
// Update the contents of the system table:
db_query("DELETE FROM {system} WHERE filename = '%s' AND type = '%s'", $filename, $type);
db_query("INSERT INTO {system} (name, description, type, filename, status) VALUES ('%s', '%s', '%s', '%s', %d)", $info->name, $info->description, $type, $filename, $file->status);
$rows[] = array($info->name, $info->description, array("data" => (in_array($filename, $required) ? form_hidden("status][$filename", 1) . t("required") : form_checkbox("", "status][$filename", 1, $file->status)), "align" => "center"));
}
$output = table($header, $rows);
// If we're doing themes, stick the default one here...
if ($type == "theme") {
$output .= "<hr />\n";
foreach ($themes as $theme)
$options .= "<option value=\"$theme\"". (variable_get("theme_default", 0) == $theme ? " selected=\"selected\"" : "") .">$theme</option>\n";
$output .= form_item(t("Default theme"), "<select name=\"edit[theme_default]\">$options</select>", t("The default theme as seen by visitors or anonymous users. Make sure a valid theme is selected here (i.e. one that has its box checked above.)"));
}
$output .= form_hidden("type", $type);
return $output;
}
function system_admin() {
$op = $_POST["op"];
$edit = $_POST["edit"];
2002-12-24 15:40:32 +00:00
if (user_access("administer site configuration")) {
if ($op == t("Reset to defaults")) {
$output = status(system_reset_default($edit));
}
if ($op == t("Save configuration")) {
$output = status(system_save_settings($edit));
}
$output .= system_view(arg(2), arg(3));
return $output;
}
else {
return message_access();
}
}
2002-11-25 18:01:56 +00:00
?>