Lines Matching refs:INPUT

66         global $INPUT;
67 if($INPUT->has('admin')) {
68 $this->admin = $INPUT->extract('admin')->str('admin'); //can be post or get
96 $this->commenthelper->delete($INPUT->post->str('comment-cid'));
101 $batch = $INPUT->post->str('comment_batch_edit');
102 $cids = $INPUT->post->arr('comments-cids');
128 $pid = $INPUT->post->str('entry-pid');
129 $blog = $INPUT->post->str('entry-blog');
142 $pid = $INPUT->post->str('entry-pid');
143 $status = $INPUT->post->str('entry-commentstatus');
161 if ($INPUT->has('comment-limit')) {
162 $this->commentLimit = $INPUT->int('comment-limit');
166 if ($INPUT->has('entry-limit')) {
167 $this->entryLimit = $INPUT->int('entry-limit');
181 global $ID, $INPUT;
203 $query = $INPUT->arr('query');
206 $query['offset'] = $INPUT->int('query-offset');
213 … $comment = $this->commenthelper->comment_by_cid($INPUT->get->str('comment-cid'));
232 $query['offset'] = $INPUT->int('comment-offset');
237 $query['offset'] = $INPUT->int('entry-offset');
821 global $lang, $INPUT;
832 $query = $INPUT->arr('query');
881 global $INPUT;
884 $comment->setCid($INPUT->post->str('comment-cid'));
885 $comment->setPid($INPUT->post->str('comment-pid'));
886 $comment->setCreated($INPUT->post->str('comment-created'));
887 $comment->setStatus($INPUT->post->str('comment-status'));
888 $comment->setSource($INPUT->post->str('comment-source'));
889 $comment->setName($INPUT->post->str('comment-name'));
890 $comment->setMail($INPUT->post->str('comment-mail'));
891 $comment->setWeb($INPUT->post->str('comment-web'));
892 $comment->setAvatar($INPUT->post->str('comment-avatar'));
893 $comment->setText($INPUT->post->str('comment-text'));