views:

1563

answers:

8

Hi guys,

I have spent a good proportion of time today looking into expanding a drupal site I inherited, convinced that the issues I face were down to my bespoke SQL query.

I have since realised that the SQL is ok (checked it in PHPMYadmin and got it executing of sorts within the drupal website). So I am happy I am getting all the results from the database I need, looping through them and outputting them on the page in the specific markup.

The problem I have is where the loop is displaying. I cannot seem to figure the theming system or understand what is going on in template.php.

Let me explain:

The code I needed to change was in the template.php file. My understanding is that this file allows you to overide certain functions and theme elements.

Within the template.php file this is the code I needed to change:

//old function from original development
function abc($node,$submitted,$node_url) {
//execute code

}

So I added my code within function abc(), as I wanted it to be output where the old code was output.

This is my psuedo code for the sql and the loop:

 function abc($node,$submitted,$node_url) {
$sql = 'my sql query'
$results =db_query($sql);
while ($data = db_fetch_array($results)) {
  //output my results here
}

}

What led me to believe that the sql was wrong is that I should have got 23 results, but I was getting a lot more duplicate entries. After wasting alot of time looking in the wrong place, and scrutinising the sql, I realised that it was the function executing the sql and the loop multiple times, not the sql returning duplicate entries. I did this like so:

function abc($node,$submitted,$node_url) {
 $sql = 'my sql query'
 $results =db_query($sql);
 $x = 1;
 while ($data = db_fetch_array($results)) {
   if ($x == 1) {
     echo '<p style="background-color:#ccc;">'. $x . '. '.$data['title'] . '</p>';
   }else{
 echo '<p>'. $x . '. '.$data['title'] . '</p>';
   }
 $x = $x + 1;
}

}

As the code executed I was expecting an incremented number to go on for as many duplicate entries and shade the first entry's background to grey, but it did not. At result 23, it reset itself to 1 and shaded that entry's background to grey, indicating to me that it was the function executing the sql and the loop multiple times.

I am not wholly sure what this abc() function is, apart from the fact that when I place my code within it, the output displays where I need it to on a specific page and nowhere else (with no duplicate entries).

When I take my code out of this function (still within template.php), my code is output in the head of all pages which is not desirable.

Does anyone have any ideas as to what might be happening, where I can look to find out what this function is or know of a way for me to determine the display of my code?

I have been reading a bit about themes etc, but working with someone else's code is turning into a bit of a confusion nightmare.

Cheers in advance!

A: 

While template.php is used for overriding various theme functions it can also be used to simply store functions that are called on your templates (you can also force template.php to be available in a custom module depending on how hacky the site was done by the original developer(s)). So just because a function is in template.php does not automatically assume it is a theme override (if you can provide he actual name for the function it would help to determine if it is though).

And the reason taking your code out of the function but leaving it in template.php causes the output on every page is because template.php is included in every page. Theoretically you can put more than just functions in template.php. On a large site I worked on one of the developers broke up the functions into a couple smaller files so template.php was just 2 or 3 functions and 3 or 4 include()'s.

Knowing the actual name of the function would really help determine if this is a custom function or a theme override.

Steven Surowiec
@Lyndsey: for example, if the function's real name was foo_event_upcoming_item() we would know that it's overriding the 'Upcoming Events' display from the Events module. Function names have significance in Drupal.
anschauung
Thanks to you all for all input so far btw.Any ideas how I can find out the name of the function? - Do you guys have any tips for finding function calls on unseen code - or is it just a case of trawling?
+1  A: 

Well, to start, you shouldn't use echo, since it will print when the code is run (e.g. at the top of the page while it's loading) rather than into the variables that the template displays at the appropriate spots in the page. (This isn't to say that echo won't ever work, but using it isn't best practice.)

What did the previous function use to output the data? (There might be a page named something like abc.tpl.php (if your function is named abc) that will help you find the appropriate variable names.

If you add the SQL strings you were using, I might be able to diagnose that issue as well.

EDIT:

Assuming, based on your earlier comment, that you are trying to format a blog node (I base this on your mentioning the lack of a node-blog.tpl.php):

Drupal's assumptions, when rendering a page, go something like this (simplified):

  1. Load the core. Grab the content from the database. Get the taxonomy and other goodies, and make these available to the modules and themes

  2. Then, look in all the modules to see if they have hooks that, based on their function name, will modify the page. If they do, run the functions. If they don't, leave the page alone.

  3. Then, look in all the theme to see if template.php have hooks that, based on their function name, will modify the page. If they do, run the functions. If they don't, leave the page alone.

  4. Last, look at the tpl.php files and display the page using those. If there's no tpl.php file with the right file name, then load it using node.tpl.php

A good summary of all that is at http://drupal.org/node/173880

If you have no functions in template.php that look like the would modify the page, and you have no tpl.php files that match the node you're looking for, that means that all your pages are being loaded using the default template.

(This is probably why your predecessor set up the strange construction that he did. Using a function like that is a kinda hacky way to do what Drupal can do automatically through the theme functions)

So:

Go ahead and make the tpl.php file. Call it node-blog.tpl.php if your content type is a blog node, or something else. You can probably just copy the existing tpl.php files for now. Then, create a preprocess function in template.php to go along with it.

(You will need to rebuild the theme registry for Drupal to recognize the changes -- you already have the Devel module installed, so it should be easy from there. Visiting /admin/build/modules on your site will work as well.)

Then, visit http://drupal.org/node/223430 and http://drupal.org/node/337022 for some quick explanations and code snippets that will let you pass your data as a variable, that the template can then render on your pages

One Last Edit:

By any chance, does this function build a list of blog posts, and present the information in summary form (e.g. a list of pending posts)?

I ask because if so, the Views module can probably do all of this work for you. Unless the data processing in function abc() is really, really, fancy, this seems like just the sort of thing that Views was built for.

anschauung
I should use return over echo - altering this now, thanks!
A: 

To answer a few questions you have raised:

The previous function was doing this:

function abc($node,$submitted,$node_url) {
echo $node->taxonomy['color'];
$a = explode(",",$submitted);
$b = explode("-",$a[1]);

// THIS IS THE DESCRIPTION
if(strlen($node->content['body']['#value'])>180)
{
$c = str_split($node->content['body']['#value'],180);
$d = $c[0]."...";

}
else{
$d = $node->content['body']['#value'];
}


$multiple = $node->field_mul_event[0]['view'];
$eventcode = $node->field_event_code[0]['value'];

$strdata="";
$strdata.="specific markup to output here";
return $strdata;

}

This functionjust pulled out a start and end date and a description

The sql string in my code is:

select DISTINCT node.nid AS nid, node.title AS node_title, 
    content_type_blog.field_date_from_value AS node_data_field_date_from_field_date_from_value, 
    DATE_FORMAT(content_type_blog.field_date_from_value, '%%d/%%m/%%Y') AS dateFrom, 
    content_type_blog.field_date_from_value2 AS node_data_field_date_from_field_date_from_value2, 
    content_type_blog.nid AS node_data_field_date_from_nid, 
    field_mul_event_value AS multiEvent,
    field_event_code_value AS eventCode,
    node.type AS node_type, 
    content_type_blog.field_event_excerpt_value AS node_data_field_date_from_field_event_excerpt_value, 
    image_attach.iid AS image_attach_iid, 
    node_images.filepath AS imagePath,
    color AS catColour
    FROM node 
    node LEFT JOIN content_type_blog content_type_blog ON node.vid = content_type_blog.vid
      LEFT JOIN image_attach image_attach ON node.nid = image_attach.nid
               LEFT JOIN node_images node_images ON node.nid = node_images.nid
               LEFT JOIN term_node term_node ON node.nid = term_node.nid
               LEFT JOIN term_data term_data ON term_node.tid = term_data.tid
        WHERE node.type LIKE 'blog' AND content_type_blog.field_date_from_value >= DATE(NOW()) AND content_type_blog.field_date_from_value2 >= DATE(NOW()) 
        ORDER BY content_type_blog.field_date_from_value ASC

As I am sure you can tell, this sql grabs all the same data (and some extra info) except data older than todays date and then orders it in date order.

I have taken a look in the theme folder and there are two tpl.php files with the same code in them:

<?php print $fields['title']->content; ?>
<?php print $fields['introduction']->content; ?>

I cannot see any custom modules as such in sites/all/modules. This is the list in there (but they all seem like inherent modules to me):

  1. cck
  2. date
  3. devel
  4. extlink
  5. fckeditor
  6. image
  7. imce
  8. menu_breadcrumb
  9. nice_menus
  10. node_images
  11. pathauto
  12. sections
  13. swftools
  14. token
  15. views
  16. wysiwyg

Excuse my ignorance - but I am learning drupal as I go along. More of a wordpress gal usually if you know what I mean. Not used to nodes/taxonomy/the drupal system and the like which is my base excuse for my lack of knowledge.

I need to find that function and determine what it does - gah!!!

Thanks everyone!

It might be incidental to the problem at hand, but why does the SQL have a LEFT JOIN on term_data and term_node? Drupal core already loads that information, so unless function abc() uses that info to process it's output, you can probably just get rid of it and make the function faster.
anschauung
A: 

Ok had a look about using the theme developer:

Parents: theme_taxonomy_term_page < page.tpl.php Template called: node.tpl.php File used: modules/node/node.tpl.php Candidate template files: node-blog.tpl.php < node.tpl.php Preprocess functions: template_preprocess + template_preprocess_node + content_preprocess_node + nodereference_preprocess_node + views_preprocess_node Duration: 6.84 ms

Look in here modules/node/node.tpl.php and found references to abc function

 <?php print abc($node,$submitted,$node_url); ?>

Can't find node-blog.tpl.php and can't find any references to functions template_preprocess + template_preprocess_node + content_preprocess_node + nodereference_preprocess_node + views_preprocess_node

Stumped.

May be I going about this all wrong. I have the code I need, and I can put it in a function into template.phpHow can I return that function in the page where I need it?
It does seem like an odd construction. See a more detailed response, below -- I can't do formatting in a comment
anschauung
A: 

Ok so I created my own function in template.php

function getData(){
   $sql='my sql query';
   results =db_query($sql);
   while ($data = db_fetch_array($results)) {
      //Loop through data and save to $db_data
      return $db_data;
   }

}

Then in page.tpl.php I did this:

<?php print getData(); ?>

Problem is it only outputs first row.

Any ideas?

Your return is within your while loop so it will return after the first row. Instead just buffer what you want to return and return it after the while loop completes.
Dan U.
You should use something more like $db_data_list[] = $db_data instead of return $db_data. You would then return $db_data_list; at the very end of the function. PHP functions call it quits when they see a return statement, as @Dan mentioned, so your loop never gets past the first record.
anschauung
+1  A: 

Just to clarify my comment, it should look something like this:

function getData(){
   $sql='my sql query';
   results =db_query($sql);
   $return_string = '' ;
   while ($data = db_fetch_array($results)) {
      //Loop through data and save to $db_data
      $return_string .= $db_data;
   }
   return $return_string;

}

It sounds like you're on the right track with calling this function from within page.tpl.php; note that you can have it display only on specific pages by conditionally invoking it for specific values of $node->nid:

<?php if ($node->nid == xxx || $node->nid == yyy) print getData() ;?>

If you're using CCK and displaying the results of your function for specific content types only, Contemplate is a good module, esp. for beginning Drupalers, that makes some of this easier.

Dan U.
A: 

A very good start to see what's going on with the theme hooks and template files is the devel module. Enabling it and going to the site and enabling the "Theme Developer" module will get you a little widgety thing in the bottom left part of your pages, where you can check a box and then click on any element on the page - and it will show you what it is executing, why, and what else it could be executing.

Could be a start.

xkcd150
+2  A: 

You are down the wrong path here, probably because you are inexperienced in how Drupal works, so let me give you some info and advice.

You could say that Drupal have to layers in which it execute code, the modules/core and the theming. Generally you could say that the first layer, the modules/core is the generation/fetching of data, while the 2nd is the presentation of that data. What you are doing is fetching data in the presentation layer, which really should be avoided. This is also the reason why you had so much trouble tracking down the cause, because of the confusion of what is getting the data and what is presenting it. What you did is also very much a waste of resource, I'll come to that later, but first what happened?

You have taken over a site, which probably have a custom theme, and I can tell that it has been made in an hacky way. Maybe the one who did it, didn't know the proper way but made something that “works”. Now what trying to alter it, you broke it. When Drupal presents a node (a node is a piece of content), it gets a lot of data, modules can hook in and add, alter or delete that data, and in the end the data gets to the template (all template files are denoted tpl.php - that is unless a different template engine is used). The way this works, is that it uses the “page” template to create the basics of the site, the navigation, the different regions ect. Now when displaying a list of nodes, each node will be displayed within the page template by having it's data outputted to the node template. Normally there's a lot of divs ect. combined with some php printing of data. In your example a function was also called. In some cases this can be fine, if you use fx translate functions for multi lingual sites or a simple function that checks something for you. However in your case you used that function to get data. By looking at the SQL you created it seems like you actually was trying to get the list of blog nodes you wanted to show. This could kind of work if only a single node was displayed, but when a list of nodes are displayed, you run the SQL and print the result for every node listed which is what got you in this mess. This is also very ineffective, as you run the query each time the node template is used. As you can see, it's very confusing and hard to control fetching data in the theming layer. But how do you do it then?

There are some different ways to do things kind of things, there are even made modules for this. Now it seems you want to display a list of blog nodes based on 2 CCK date fields.
The easy non coding way:
Simply create a view, using the views module. You can select nodes of type blog and filter based and the current data and the date on the cck fields. You can choose different displays. Showing either the full node or only part of the node, list, table ect. Lastly you select an URL for the view and you're done. The harder coding way:
Create a custom module. First you need to implement hook_menu() to create a menu item which is how you setup the URL. Doing that you assign a function that you must create for that URL. In it you put much of the above code, fetching the data with SQL, however you will also need to run that data through various theming functions that will generate the markup and lastly you return the data. This is actually quite easy to do, if you know how Drupal works. If not, it will be hard to do this properly as you will need to call a lot of functions you don't know, and implement hooks ect.

This ended up being a bit longer than I planed, but I hope it helps you out with your new Drupal site.

Edit:

It actually looks like the SQL you posted is the SQL generated from a view that looks to be working. The only flaw is that you ask for both date fields to be greater or equal to now. CCK fields can have a default value but I believe you can always edit it to whatever you like when you edit the node, unless the node form has been edited to hide the fields. Also there wouldn't be any reason to use a CCK date field for the publish date. That information is available on every node along with last edited date.

You can find a lot of good stuff at Lullabot. They have made a lot of stuff on how to use CCK and views. Some of it they sell and some of it you can get for free. In your example, the difficult part is getting the nodes you want. To do that you need to add filters. When you want to sort by any date, you need to add a date filter located in the date group. In it you can check the fields you want to use. However in your case you want to add the date filter twice one for each of the date fields, as you have different values for the fields. This is probably where your flaw is and what is giving you problems.

googletorp
Thanks googletorp - can I ask another question?You say"The easy non coding way - use views and cck fields"I believe the date on the cck field is the published date. I will need to order by a date specified by the user as opposed to a pub date - this is my whole problem unfortunately and why I needed to amend the code in the first place.Any good tuts you would suggest for cck/views? How could I create the view and give myself access to more fields from the db, as when I tried to do this before I could not figure it out.Thanks again!