Skip to content
Snippets Groups Projects
Commit eacfc042 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Added 'drupal' link to pages.
parent 52aa4117
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php <?php
function drupal_link($type) {
if ($type == "page") {
$links[] = "<a href=\"module.php?mod=drupal\">drupal engine</a>";
}
return $links ? $links : array();
}
function drupal_page() { function drupal_page() {
global $theme, $user; global $theme, $user;
...@@ -10,14 +18,6 @@ function drupal_page() { ...@@ -10,14 +18,6 @@ function drupal_page() {
$output .= " <P>We don't have a real demo site yet but Drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>. Create an account, play with it for a bit, read the <A HREF=\"node.php?title=drupal+handbook\">documentation</A> and spend some time getting used to it.</P>\n"; $output .= " <P>We don't have a real demo site yet but Drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>. Create an account, play with it for a bit, read the <A HREF=\"node.php?title=drupal+handbook\">documentation</A> and spend some time getting used to it.</P>\n";
$theme->box("Drupal", $output); $theme->box("Drupal", $output);
/*
unset($output);
$handle = opendir("drupal");
while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
closedir($handle);
$theme->box("Screenshots", $output);
*/
$output = "<H3>Download Drupal</H3>\n"; $output = "<H3>Download Drupal</H3>\n";
$output .= " <LI><A HREF=\"drupal/drupal-2.00.tgz\">Drupal 2.00</A> (2001/03/15 - latest version)</LI>\n"; $output .= " <LI><A HREF=\"drupal/drupal-2.00.tgz\">Drupal 2.00</A> (2001/03/15 - latest version)</LI>\n";
$output .= " <LI>Drupal 1.00 (2001/01/15)</LI>\n"; $output .= " <LI>Drupal 1.00 (2001/01/15)</LI>\n";
......
<?php <?php
function drupal_link($type) {
if ($type == "page") {
$links[] = "<a href=\"module.php?mod=drupal\">drupal engine</a>";
}
return $links ? $links : array();
}
function drupal_page() { function drupal_page() {
global $theme, $user; global $theme, $user;
...@@ -10,14 +18,6 @@ function drupal_page() { ...@@ -10,14 +18,6 @@ function drupal_page() {
$output .= " <P>We don't have a real demo site yet but Drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>. Create an account, play with it for a bit, read the <A HREF=\"node.php?title=drupal+handbook\">documentation</A> and spend some time getting used to it.</P>\n"; $output .= " <P>We don't have a real demo site yet but Drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>. Create an account, play with it for a bit, read the <A HREF=\"node.php?title=drupal+handbook\">documentation</A> and spend some time getting used to it.</P>\n";
$theme->box("Drupal", $output); $theme->box("Drupal", $output);
/*
unset($output);
$handle = opendir("drupal");
while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
closedir($handle);
$theme->box("Screenshots", $output);
*/
$output = "<H3>Download Drupal</H3>\n"; $output = "<H3>Download Drupal</H3>\n";
$output .= " <LI><A HREF=\"drupal/drupal-2.00.tgz\">Drupal 2.00</A> (2001/03/15 - latest version)</LI>\n"; $output .= " <LI><A HREF=\"drupal/drupal-2.00.tgz\">Drupal 2.00</A> (2001/03/15 - latest version)</LI>\n";
$output .= " <LI>Drupal 1.00 (2001/01/15)</LI>\n"; $output .= " <LI>Drupal 1.00 (2001/01/15)</LI>\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment