Pastoid

Search Results

March 27, 2008 at 10:40 pm - View

public function action_plugin_ui( $plugin_id, $action ) { if ( $plugin_id == $this->plugin_id() ) { switch ( $action ) { case _t( 'Configure' ):

March 27, 2008 at 3:40 pm - View

March 27, 2008 at 8:43 am - View

public function act_display_home() // This works since it overrides the default act_display_home function in theme.php { parent::act_display_home( array( 'not:tag' => 'quickie' ) ); }

March 27, 2008 at 8:42 am - View

if ( !$this->template_engine->assigned( 'asides' ) ) { $this->assign( 'asides', Posts::get( array( 'tag'=>'quickie', 'limit'=>5) ) ); }

March 26, 2008 at 7:17 pm - View

public function action_init_theme() { Utils::debug(Controller::get_handler_vars());

March 26, 2008 at 3:36 pm - View

March 26, 2008 at 2:51 pm - View

March 26, 2008 at 2:44 pm - View

March 26, 2008 at 2:37 pm - View

March 26, 2008 at 2:34 pm - View

March 26, 2008 at 8:33 am - View

March 26, 2008 at 8:28 am - View

March 26, 2008 at 4:43 am - View

/** * Aggregates and echos the additional header code by combining Plugins and Stack calls. */ public function theme_header( $theme ) {

March 26, 2008 at 12:00 am - View

function install() { if(Options::get('aliencontact:database')) { DB::register_table('aliencontact'); $sql = "CREATE TABLE " . DB::table('aliencontact') . " (

March 25, 2008 at 10:20 pm - View

March 25, 2008 at 8:59 pm - View

public function action_post_update_status( $post, $new_status ) { $this->set($post); } public function set($post) {

sample .htaccess file - View

### HABARI START RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteBase /

March 25, 2008 at 4:22 pm - View

* FormUI This is the main class, it generates the form itself; * FormController To create groups of instances (ex: fieldsets), also to reduce infinite recurrence; * FormValidators Catalog of validation functions, it can be extended if needed; * FormControl Parent class to controls, it contains basic functionalities overrode in each control's class; * FormControl* Every control needs a FormControl* class, FormUI literally looks for example, FormControlCheckbox.

Habari AJAX - View

<?php // In the plugin PHP public function action_auth_ajax_twitter_send_tweet( $handler ) { $tweet= $handler->handler_vars[ 'tweet' ]; if ( ! empty( $tweet ) ) {

March 24, 2008 at 10:22 pm - View

public function insert($title, $val = NULL) { $user = User::identify(); $insert = array();

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