Pastoid

Search Results

September 9, 2008 at 10:11 pm - View

September 9, 2008 at 9:47 pm - View

September 9, 2008 at 8:43 am - View

September 8, 2008 at 10:49 pm - View

September 8, 2008 at 3:26 pm - View

public function theme_comment_form( $theme ) { $ui = new FormUI( 'comments_form' ); $ui->set_option( 'form_action', URL::get( 'submit_feedback', array( 'id' => $theme->post->id ) ) );

September 7, 2008 at 10:57 pm - View

public static function autop($value) { $target = str_replace( "\r\n", "\n", $value ); $block_tags = array(

September 7, 2008 at 4:25 pm - View

<?php $url = "some nice text www.example.org/foo/bar/ this is something onemore.se else and http://onelast.com"; $str = preg_replace("/(http\:\/\/)*(www.)*([a-z]+\.[a-z]{2,5})([a-z\/]*)/","<a href=\"http://$2$3$4\">$3</a>", $url); echo $str;

September 7, 2008 at 3:49 pm - View

<?php $url = "some text before www.example.com/foo/"; $out = array(); preg_match_all("/(www.)?([a-z]+\.[a-z]{2,6})([a-z\/]*)/i",

September 7, 2008 at 2:46 pm - View

<?php $url = ' http://example.org/foo/bar/baz '; echo preg_replace( '! \s

September 7, 2008 at 2:40 pm - View

if ( Options::get( 'twitter__linkify_urls' ) != FALSE ) { $theme->tweet_text = preg_replace( "! \s ([a-zA-Z]+://) # http://

Why doesn't this match multiples? - View

if ( Options::get( 'twitter__linkify_urls' ) != FALSE ) { $theme->tweet_text = preg_replace( "/\s(([a-zA-Z]+:\/\/)([a-z][a-z0-9_\..-]*[a-z]{2,6})([a-zA-Z0-9\/*-?&%]*))\s/i", " <a href=\"$1\">$3</a> ", $theme->tweet_text); }

Create a form for a new content type - View

<?php /** * Test Plugin Class *

September 5, 2008 at 5:29 pm - View

<?php $previous= $theme->get_prev_page(); $next= $theme->get_next_page(); if($next != NULL || $previous != NULL) {

September 5, 2008 at 3:37 pm - View

How do I get "B" vertically atop "A"? - View

<div id="A">Lorem ipsum dolor. Arma virumque cano, Troiae qui primus ab oris Italiam fato profugus Laviniaque venit litora, multum ille et terris iactatus et alto vi superum, saevae memorem Iunonis ob iram, multa quoque et bello passus, dum conderet urbem inferretque deos Latio; genus unde Albanique patres

How do I get "B" vertically atop "A"? - View

So what I want is to have page source with: A B and the page to appear as:

ACL SQL - View

SELECT COALESCE(permission_id, 0) as permission_id FROM ( ( SELECT permission_id FROM {user_token_permissions}

habaripackage.php line 218 - View

private function trigger_hooks( $hook ) { $install_profile = $this->install_profile; switch ( $this->type ) { case 'plugin':

September 4, 2008 at 7:52 pm - View

September 4, 2008 at 7:23 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 · 162 · 163

<Hide