This forum is for assistance with theme development.

Inflexible block generation functions?

Hey,

I have given a spin at creating my first template. It really seems quite simple and I have used my favourite templating engine, namely patTemplate. After some effort, the results show up quite nicely. However, I have found that functions such as theme_blocks("all", $this); are quite inflexible because they print their content instead of returning it and letting the theme developer decide what to do.

Now I am forced to split up my templates in many unrelated segments like:

footer() {
  printSubTemplateFooter1;
  theme_blocks("all", $this);
  printSubTemplateFooter2;
}

Where I could be trivially doing:

footer() {
  $t = theme_blocks("all", $this);
  assignValueToTemplateVariable($t);
  printWholeFooterTemplate;

I have checked all the obvious routes (FAQ, etc.) and I recall seeing some discussion but my knowledge of past implementation is nil. Looking at the calls under 'theme_blocks', the code itself seems pretty unremarkable, hidden in there is a single offending 'print' that does all the damage.

I suppose there might be some good reasons for taking this approach, but I think that -for example- using an optional flag parameter in the block printing routines would provide a great deal of flexibility at minimum cost. Splitting up templates might be a natural for me but my graphic designers will be surely pained. Is there anything I have overlooked?

Where are commercially released themes for Drupal? Theme screenshots?

I am just evaluating Drupal for our purposes and a newbee at this Forum. I have two questions to Drupal community members:

1) Where can I find all the commercially available themes for Drupal 4.3.0 version? I am willing to pay for the right theme $30-$80.

I searched the web over for Drupal themes and could not find much.

login / nav block

Using xtemplate (i dont know if this is the same with all) I have noticed that when the navigation block is disabled the login block also disappears. I cant see a valid reason for it working this way.

I have 4 permissions set up, super admin, moderator, auth user and anonymous.

XTemplate_Tableless issues

On a fresh install of 4.2.0 at Contrast I modified the style and .xtmpl files a bit, nothing that should cause any problems..On loading I get all sorts of errors like

user notice: [XTemplate] parse: blockname [header.IF_has_slogan] does not exist in /home/contrast/public_html/themes/XTemplate_Tableless/xtpl/xtemplate.inc on line 415.

and

HOSTNAME Based Themes For Multiple Sites

Thought I would share my small amount of insite into that which is drupal. To use a single instance of the drupal framework and db for multiple sites I did the following:

conf.php


       Changed "$base_url" to "$base_url = "http://".$_SERVER['HTTP_HOST'];"

       Added 2 new lines:

      $base_url = "http://".$_SERVER['HTTP_HOST'];

      $strHost = explode(".", $_SERVER['HTTP_HOST']);

      $base_host = strtolower($strHost[1]);


common.inc
       Removed all instances of '$base_url' from function url()

       Added 1 line directly after 'include_once "includes/database.inc";'

      variable_set("theme_default",$base_host);



At this point I simply created themes with the corresponding HOSTNAME. For example:

How to create my own template

How do I create my own template? Is php knowledge required? Any other resources on Drupal themes? Any standard?

Thx

Pages

Subscribe with RSS Subscribe to RSS - Theme development