Pastoid

Search Results

April 28, 2008 at 2:15 pm - View

//In theme.php (theme class): public function theme_next_page_link( $theme, $text= NULL ) { $settings= array();

April 28, 2008 at 2:15 pm - View

//In theme.php (theme class): public function theme_next_page_url( $theme ) { $settings= array();

April 28, 2008 at 1:55 pm - View

// need this in your theme.php before parent::add_template_vars(); if( !$this->template_engine->assigned( 'tags' ) ) { $tags= DB::get_results( 'SELECT * FROM ' . DB::table('tags') ); $tags= array_filter($tags, create_function('$tag', 'return (Posts::count_by_tag($tag->tag_slug, "published") > 0);'));

Utils::Debug ($xml) - View

object SimpleXMLElement Object ( [@attributes] => Array ( [stat] => ok

April 28, 2008 at 1:33 pm - View

public function filter_template_where_filters( $where_filters ) { $this->theme->livesearch_params= array(); foreach ( $where_filters as $key => $value ) {

April 28, 2008 at 1:14 pm - View

flickrtag - View

<?php include 'header.php'; ?> <?php include 'sidebar.php'; ?> <?php echo "blah"; try {

April 28, 2008 at 3:50 am - View

/* Theme * descend() and ascend() can also take a Posts object, or an array of parameters */ <?php

April 28, 2008 at 3:50 am - View

/** * Returns the ascending post, relative to this post, according to params * @params The params by which to work out what is the ascending post * @return Post The ascending post */

April 28, 2008 at 3:50 am - View

/* Posts */ /* * Returns an ascending post *

Habari Ascend and Descend - View

<?php $previous= $post->descend(); if ( $previous ) { echo "<a href=\"{$previous->permalink}\" title=\"{$previous->slug}\" class='alignleft'>{$previous->title}</a>"; }

Habari Ascend and Descend - View

/* Posts */ /* * Returns an ascending post *

Habari Ascend and Descend - View

/* Posts */ /* * Returns an ascending post *

April 28, 2008 at 1:22 am - View

array Array ( [content_type] => plugin_directory [nolimit] => 1 [all:info] => Array

New Monthly Archives Plugin - View

<?php /* * Monthly Archives Plugin * Usage: <?php echo $theme->monthly_archives(); ?>

April 27, 2008 at 10:52 pm - View

Index: system/classes/theme.php =================================================================== --- system/classes/theme.php (revision 1582) +++ system/classes/theme.php (working copy) @@ -627,6 +627,42 @@

April 27, 2008 at 10:51 pm - View

public function theme_prev_page_link( $theme, $text= '' ) { $settings= array(); // If there's no previous page, skip and return null

April 27, 2008 at 10:30 pm - View

<?php public function theme_next_post_link( $theme, $label= null ) { $next_link = '';

My flickr Webcam - View

<?php try { $flickr= new Flickr(); $params= array( 'photoset_id' => '72157604478464529',

My Paste - View

public function theme_next_post_link( $theme ) { $next_link = ''; $where= 'pubdate > \'' . $theme->post->pubdate . '\'';

1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 · 16 · 17 · 18 · 19 · 20 · 21 · 22 · 23 · 24 · 25 · 26 · 27 · 28 · 29 · 30 · 31 · 32 · 33 · 34 · 35 · 36 · 37 · 38 · 39 · 40 · 41 · 42 · 43 · 44 · 45 · 46 · 47 · 48 · 49 · 50 · 51 · 52 · 53 · 54 · 55 · 56 · 57 · 58 · 59 · 60 · 61 · 62 · 63 · 64 · 65 · 66 · 67 · 68 · 69 · 70 · 71 · 72 · 73 · 74 · 75 · 76 · 77 · 78 · 79 · 80 · 81 · 82 · 83 · 84 · 85 · 86 · 87 · 88 · 89 · 90 · 91 · 92 · 93 · 94 · 95 · 96 · 97 · 98 · 99 · 100 · 101 · 102 · 103 · 104 · 105 · 106 · 107 · 108 · 109 · 110 · 111 · 112 · 113 · 114 · 115 · 116 · 117 · 118 · 119 · 120 · 121 · 122 · 123 · 124 · 125 · 126 · 127 · 128 · 129 · 130 · 131 · 132 · 133 · 134 · 135 · 136 · 137 · 138 · 139 · 140 · 141 · 142 · 143 · 144 · 145 · 146 · 147 · 148 · 149 · 150 · 151 · 152 · 153 · 154 · 155 · 156 · 157 · 158 · 159 · 160 · 161 · 162 · 163

<Hide