Pastoid

Search Results

home.php - View

<?php include 'header.php'; ?> <div id="image"> <div class="main_image"> <?php echo $post->content_out; ?>

March 3, 2009 at 11:00 am - View

foreach(Tags::get() as $tag) { echo '<li><a href="' . URL::get('display_entries_by_tag', array('tag'=>$tag->slug)) . '">' . $tag->tag . '</a> ('. $tag->count . ')</li>'; }

Tag List - View

foreach(DB::get_results('SELECT * FROM ' . DB::table('tags'). ' ORDER BY tag_text ASC') as $tag) { if ($tagcount!= 0) {echo "&bull;";} echo "<a href=\"" . URL::get('display_posts_by_tag', 'tag=' . $tag->tag_slug) . "\">{$tag->tag_text}</a>"; $tagcount++; }

March 3, 2009 at 10:17 am - View

// called similar to $ctrl->add_validator( array( $this, 'validate_numeric' ) ); public function validate_numeric( $value ) { if( !is_numeric( $value ) ) { return array( _t( 'This field must be a number.', $this->class_name ) );

page menu - View

/* At least this in theme.php. */ public function add_template_vars() { if(!$this->template_engine->assigned('pages')) $this->assign('pages', Posts::get(array('content_type' => 'page', 'status' => Post::status('published'))));

page menu - View

<!-- In sidebar or other template --> <?php if(count($pages) > 0) : /* List Pages if any. */ ?> <h2 id="pagelist-title"><?php _e('Pages'); ?></h2> <ul id="pagelist"> <?php

object(State)#33 (4) - View

object(State)#33 (4) { ["name"]=> string(4) "test" ["autoload"]=> bool(true)

object(State)#33 (4) - View

object(State)#33 (4) { ["name"]=> string(4) "test" ["autoload"]=> bool(true)

object(State)#33 (4) - View

object(State)#33 (4) { ["name"]=> string(4) "test" ["autoload"]=> bool(true)

object(State)#33 (4) - View

object(State)#33 (4) { ["name"]=> string(4) "test" ["autoload"]=> bool(true)

array(1) { [0]=> - View

array(1) { [0]=> string(4) "test" } object(State)#32 (4) {

array(1) { [0]=> - View

array(1) { [0]=> string(4) "test" } object(State)#32 (4) {

array(1) { [0]=> - View

array(1) { [0]=> string(4) "test" } object(State)#32 (4) {

array(10) { [0]=> - View

array(10) { [0]=> string(4) "test" [1]=> string(4) "test"

Warning: DateTime:: - View

Warning: DateTime::format() [function.DateTime-format]: The DateTime object has not been correctly initialized by its constructor in system/classes/habaridatetime.php line 209 Recoverable Error: Method HabariDateTime::__toString() must return a string value in system/classes/databaseconnection.php line 289

Loginform - View

<!-- loginform --> <?php if ( isset( $error ) && ( $error == 'Bad credentials' ) ) { ?> <p><?php _e('That login is incorrect.'); ?></p>

March 2, 2009 at 2:39 pm - View

March 2, 2009 at 9:16 am - View

loop context - View

<?php foreach ( $posts as $post ) : ?> <?php $theme->content($post, 'home_posts'); ?> <?php endforeach; ?>

February 28, 2009 at 11:03 pm - View

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

<Hide