/[drupal]/contributions/sandbox/alaa/snippets/manalaa_posts_block.php
ViewVC logotype

Contents of /contributions/sandbox/alaa/snippets/manalaa_posts_block.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Tue Mar 21 23:19:50 2006 UTC (3 years, 8 months ago) by alaa
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
some page and block snippets
1 <?php
2 $html = "";
3 $cid = "manalaa:posts_block";
4 $cached = cache_get($cid);
5
6 if ($cached){
7 $html = $cached->data;
8 } else {
9 echo "<h1> not cached </h1>";
10 $result = taxonomy_select_nodes(array(198,199),'or','all',true);
11 $html = node_title_list($result);
12
13 cache_set($cid, $html, CACHE_TEMPORARY);
14 }
15 print $html;
16 ?>
17 <div class="more-link flop"><?php print l("more","taxonomy/term/198+199"); ?></div>

  ViewVC Help
Powered by ViewVC 1.1.2