This website requires JavaScript.
Explore
Help
Sign In
Drupal
/
drupal
mirror of
https://git.drupalcode.org/project/drupal.git
Watch
1
Star
0
Fork
You've already forked drupal
0
Code
Issues
Projects
Releases
Wiki
Activity
8c70eae2e4
drupal
/
themes
/
example
/
example.theme
8 lines
57 B
Plaintext
Raw
Normal View
History
Unescape
Escape
OK, lets hope this works... I should've added a directory example/ in themes/ and in example/ there should be example.theme Jeroen.
2001-03-10 15:14:08 +00:00
<?php
- added the CVS keyword $Id$ to all files to make future version tracking easier. Also changed the <? tag to <?php in some cases.
2001-10-20 18:57:09 +00:00
// $Id$
OK, lets hope this works... I should've added a directory example/ in themes/ and in example/ there should be example.theme Jeroen.
2001-03-10 15:14:08 +00:00
Changes - created a BaseTheme class in theme.inc. - added links($links = array(), $status = 0, $node = 0) to BaseTheme. - modified all themes to extend from BaseTheme. - modiefied theme_link() to take advantage of $theme->links(). - theme_morelink() does not require a $theme argument. Todo - add the other standard variables and functions to BaseTheme. - some themes could use some more modifications. Weird - marvin.theme still has a story() function.
2001-06-10 13:53:44 +00:00
class Theme extends BaseTheme {
OK, lets hope this works... I should've added a directory example/ in themes/ and in example/ there should be example.theme Jeroen.
2001-03-10 15:14:08 +00:00
}
- A large batch of updates, amongst them a rewritten node system. More information available on the mailing list.
2001-11-01 11:00:51 +00:00
- Updated example.theme: it's being reduced to a minimum as it can inherit most/all of its functions from the BaseTheme.
2001-10-20 13:37:30 +00:00
?>