Home
last modified time | relevance | path

Searched refs:post (Results 1 – 25 of 415) sorted by relevance

12345678910>>...17

/plugin/facebookwall/
H A Dsyntax.php248 … $post['message_short'] = substr( $post['message'], 0, $data[FB_WALL_LIMIT] ).'...';
251 $post['message_short'] = substr( $post['message_short'], 0, $index ).'...';
252 $post['message'] = substr( $post['message_short'], 0, $index ).'...';
256 $post['message_short'] = substr( $post['message'], 0, 150 ).'...';
258 $post['message_short'] = substr( $post['message_short'], 0, $index ).'...';
261 $post['message'] = str_replace("\r\n", '<html><br /></html>', $post['message'] );
262 $post['message'] = str_replace("\n", '<html><br /></html>', $post['message'] );
263 $post['message_short'] = str_replace("\r\n", '<html><br /></html>', $post['message_short'] );
264 … $post['message_short'] = str_replace("\n", '<html><br /></html>', $post['message_short'] );
275 $pic = $post['picture'];
[all …]
/plugin/revealjs/plugin/multiplex/
H A Dmaster.js10 function post() { function
23 window.addEventListener( 'load', post );
26 Reveal.addEventListener( 'slidechanged', post );
27 Reveal.addEventListener( 'fragmentshown', post );
28 Reveal.addEventListener( 'fragmenthidden', post );
29 Reveal.addEventListener( 'overviewhidden', post );
30 Reveal.addEventListener( 'overviewshown', post );
31 Reveal.addEventListener( 'paused', post );
32 Reveal.addEventListener( 'resumed', post );
/plugin/revealjs/plugin/notes-server/
H A Dclient.js16 function post() { function
45 post();
54 Reveal.addEventListener( 'slidechanged', post );
55 Reveal.addEventListener( 'fragmentshown', post );
56 Reveal.addEventListener( 'fragmenthidden', post );
57 Reveal.addEventListener( 'overviewhidden', post );
58 Reveal.addEventListener( 'overviewshown', post );
59 Reveal.addEventListener( 'paused', post );
60 Reveal.addEventListener( 'resumed', post );
63 post();
/plugin/authucenter/lib/api/
H A Duc.php40 $get = $post = array(); variable
85 function test($get, $post) { argument
89 function deleteuser($get, $post) { argument
98 function renameuser($get, $post) { argument
108 function gettag($get, $post) { argument
116 function synlogin($get, $post) { argument
137 function synlogout($get, $post) { argument
149 function updatepw($get, $post) { argument
194 if($post['UC_API']) {
196 unset($post['UC_API']);
[all …]
/plugin/etherpadlite/externals/etherpad-lite-client/
H A Detherpad-lite-client.php104 return $this->post("createGroup");
116 return $this->post("deleteGroup", array(
130 return $this->post("createGroupPad", array(
142 return $this->post("createAuthor", array(
162 return $this->post("createSession", array(
171 return $this->post("deleteSession", array(
220 return $this->post("setText", array(
228 return $this->post("setHTML", array(
241 return $this->post("createPad", array(
256 return $this->post("deletePad", array(
[all …]
/plugin/edittable/action/
H A Dnewtable.php49 if (!$INPUT->post->has('edittable__new')) return;
57 $fields = $INPUT->post->arr('edittable__new');
63 $INPUT->post->set('edittable__new', $fields);
70 $INPUT->post->set('target', 'table');
74 $INPUT->post->set('target', 'table');
82 $INPUT->post->set('target', 'section');
88 $INPUT->post->set('target', 'section');
/plugin/bibtex/OSBib/format/
H A DPARSESTYLE.php56 $post = $array[3];
77 if(preg_match("/%(.*)%(.*)%|%(.*)%/U", $post, $dependent))
79 $post = str_replace($dependent[0], "__DEPENDENT_ON_NEXT_FIELD__", $post);
98 else if(preg_match("/\^(.*)\^(.*)\^/U", $post, $matchCarat))
100 $post = str_replace($matchCarat[0], "__SINGULAR_PLURAL__", $post);
128 $final[$fieldName]['post'] = str_replace('`', '', $post);
131 $final[$fieldName]['post'] = $post;
/plugin/revealjs/plugin/notes/
H A Dnotes.js84 function post( event ) { function
137 Reveal.addEventListener( 'slidechanged', post );
138 Reveal.addEventListener( 'fragmentshown', post );
139 Reveal.addEventListener( 'fragmenthidden', post );
140 Reveal.addEventListener( 'overviewhidden', post );
141 Reveal.addEventListener( 'overviewshown', post );
142 Reveal.addEventListener( 'paused', post );
143 Reveal.addEventListener( 'resumed', post );
146 post();
/plugin/authucenter/lib/uc_client/model/
H A Dmisc.php55 …function dfopen2($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout… argument
61 return $this->dfopen($url, $limit, $post, $cookie, $bysocket, $ip, $timeout, $block, $encodetype);
64 …function dfopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE , $ip = '', $timeout… argument
72 if($post) {
76 $boundary = $encodetype == 'URLENCODE' ? '' : ';'.substr($post, 0, trim(strpos($post, "\n")));
80 $header .= 'Content-Length: '.strlen($post)."\r\n";
84 $out .= $header.$post;
100 'method' => $post ? 'POST' : 'GET',
102 'content' => $post,
/plugin/asiansearch/
H A Daction.php167 $post = min($len-$utf8_idx-$utf8_len,100);
169 if ($pre>50 && $post>50) {
170 $pre = $post = 50;
172 $pre = min($pre,100-$post);
173 } else if ($post>50) {
174 $post = min($post, 100-$pre);
187 $end = $utf8_idx + $utf8_len + $post; // now set it to the end of this context
200 $utf8_offset = $utf8_idx + $post;
201 $offset = $idx + strlen(utf8_substr($text,$utf8_idx,$post));
/plugin/sketchcanvas/
H A Daction.php177 if(!$INPUT->post->has('editfigure__new')) return;
185 $fields = $INPUT->post->arr('editfigure__new');
187 // clean the fields (undos formText()) and update the post and request arrays
191 $INPUT->post->set('editfigure__new', $fields);
198 $INPUT->post->set('target', 'plugin_sketchcanvas');
202 $INPUT->post->set('target', 'plugin_sketchcanvas');
219 $INPUT->post->set('target', 'section');
225 $INPUT->post->set('target', 'section');
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DBlogPost.yml2 xml_root_name: blog-post
11 groups: [comments, post]
16 groups: [comments, post]
26 groups: [post]
29 groups: [post]
41 groups: [post]
/plugin/blogtng/action/
H A Dajax.php39 $comment->setText($INPUT->post->str('text'));
40 $comment->setName($INPUT->post->str('name'));
41 $comment->setMail($INPUT->post->str('mail'));
42 $comment->setWeb($INPUT->post->str('web'));
54 $comment->output($INPUT->post->str('tplname'));
H A Dnew.php60 'post-blog' => $INPUT->post->str('post-blog'),
61 'post-tags' => $INPUT->post->str('post-tags'),
62 'post-commentstatus' => $INPUT->post->str('post-commentstatus'),
63 'new-format' => $INPUT->post->str('new-format'),
64 'new-title' => $INPUT->post->str('new-title')
H A Dedit.php64 $blog = $INPUT->post->str('post-blog', $blog);
106 if ($INPUT->post->has('post-date')) {
107 $date = $INPUT->post->arr('post-date');
171 $blog = $INPUT->post->str('post-blog', $blog);
223 if ($INPUT->post->has('post-date')) {
224 $date = $INPUT->post->arr('post-date');
294 $blog = $INPUT->post->str('post-blog');
320 if($INPUT->post->has('post-date')) {
321 $date = $INPUT->post->arr('post-date');
368 $tags = $INPUT->post->arr('post-tags');
[all …]
/plugin/bez/tpl/
H A Dactivity.php15 <?php $post = sprintf($tpl->getLang('timeline ' . $row['type']), variable
17 <?php $post = ' <span class="author">' . $post . '</span>' ?> variable
18 <?php $row['entity']->html_link($pre, $post) ?>
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Blogger/
H A DPostUserInfo.php51 public function setPost(Post $post) argument
53 $this->post = $post;
60 return $this->post;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DHttpRule.php46 public $post; variable in Google\\Service\\ServiceUsage\\HttpRule
147 public function setPost($post) argument
149 $this->post = $post;
156 return $this->post;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DHttpRule.php46 public $post; variable in Google\\Service\\ServiceNetworking\\HttpRule
147 public function setPost($post) argument
149 $this->post = $post;
156 return $this->post;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DHttpRule.php46 public $post; variable in Google\\Service\\ServiceConsumerManagement\\HttpRule
147 public function setPost($post) argument
149 $this->post = $post;
156 return $this->post;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DHttpRule.php46 public $post; variable in Google\\Service\\ServiceManagement\\HttpRule
147 public function setPost($post) argument
149 $this->post = $post;
156 return $this->post;
/plugin/feedmod/
H A D_footer.txt.dist1 <a href="http://digg.com/submit?phase=2&url=@URL@" title="Digg this post">Digg this post</a> &middo…
2 <a href="http://www.stumbleupon.com/submit?url=@URL@" title="Digg this post">Stumble it</a> &middot;
3 <a href="http://del.icio.us/post/?url=@URL@" title="Save to del.icio.us">Save to del.icio.us</a>
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/
H A DComment.php63 public function setPost(Post $post) argument
65 $this->post = $post;
72 return $this->post;
/plugin/davcal/action/
H A Dajax.php29 $action = trim($INPUT->post->str('action'));
30 $id = trim($INPUT->post->str('id'));
31 $page = trim($INPUT->post->str('page'));
32 $params = $INPUT->post->arr('params');
100 $startDate = $INPUT->post->str('start');
101 $endDate = $INPUT->post->str('end');
102 $timezone = $INPUT->post->str('timezone');
/plugin/drawio/
H A Dscript.js13 jQuery.post(
62 jQuery.post(
82 jQuery.post(
125 jQuery.post(
140 jQuery.post(
191 jQuery.post(
202 jQuery.post(
223 jQuery.post(
251 jQuery.post(
267 jQuery.post(

12345678910>>...17