/lib/native_template.php

http://0byte.googlecode.com/ · PHP · 502 lines · 228 code · 16 blank · 258 comment · 28 complexity · 9ffcb0a861f8a431a9b98898408d4a35 MD5 · raw file

  1. <?php
  2. /*
  3. * This file is part of 0byte.
  4. *
  5. * 0byte is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License.
  8. *
  9. * 0byte is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * See <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. /**
  18. * Renders native PHP template and returns rendered content
  19. *
  20. * @param string $tpl_path
  21. * @param array $variables
  22. * @return string
  23. */
  24. function render_template($tpl_path, $variables) {
  25. global $site,$loged, $s_name, $sl_name,$nb_rate,$nc_rate,$np_rate,$cr_rate,$pr_rate,$ur_rate,$br_rate,$no_user_rate,$blvl,$elvl,$rlvl,$script;
  26. @extract($variables, EXTR_SKIP);
  27. ob_start();
  28. include $tpl_path;
  29. return ob_get_clean();
  30. }
  31. /**
  32. * Remove templter tag from text
  33. *
  34. * @param string $text -> templated text
  35. * @param string $tag
  36. * @return string
  37. */
  38. function remove_tpl_tag($text,$tag) {
  39. $text=str_replace('{'.$tag.'}', '', $text);
  40. $text=str_replace('{/'.$tag.'}', '', $text);
  41. return $text;
  42. }
  43. /**
  44. * Remove templater tag with content
  45. *
  46. * @param string $text -> templated text
  47. * @param string $tag
  48. * @return string
  49. */
  50. function remove_tpl_tag_content($text,$tag) {
  51. return preg_replace("/{".$tag."}(.*?){\/".$tag."}/si", '', $text);
  52. }
  53. /**
  54. * Renders mail template
  55. *
  56. * @param string $mail_name
  57. * @param array $variables
  58. * @return string
  59. */
  60. function render_mail($mail_name, $variables) {
  61. return render_template(TPL_MAIL . '/' . $mail_name . '.tpl.php', $variables);
  62. }
  63. /**
  64. * Renders rss template
  65. *
  66. * @param string $type
  67. * @param string $title
  68. * @param string $link
  69. * @param array $items
  70. * @return string
  71. */
  72. function render_rss($type, $title, $link, $items) {
  73. $vars = array(
  74. 'title' => $title,
  75. 'link' => $link,
  76. 'items' => $items,
  77. );
  78. return render_template(TPL_RSS . '/posts.tpl.php', $vars);
  79. }
  80. /**
  81. * Renders utils template
  82. *
  83. * @param string $name
  84. * @param array $variables
  85. * @return string
  86. */
  87. function render_util($name, $variables) {
  88. return render_template(TPL_UTILS . '/' . $name . '.tpl.php', $variables);
  89. }
  90. /**
  91. * Render menu
  92. *
  93. * @param array $menu_arr
  94. * @param numeric $count
  95. * @return string
  96. */
  97. function render_menu($menu_arr,$count) {
  98. $vars = array('elements'=>$menu_arr,
  99. 'count'=>$count);
  100. return render_template(TPL_TOP.'/menu.tpl.php',$vars);
  101. }
  102. /**
  103. * Render top of the page
  104. *
  105. * @return string
  106. */
  107. function render_top() {
  108. return render_template(TPL_TOP.'/top.tpl.php',null);
  109. }
  110. /**
  111. * Render bottom of the top
  112. *
  113. * @param array $var
  114. * @return string
  115. */
  116. function render_bottom_of_top($var) {
  117. return render_template(TPL_TOP.'/bottom.tpl.php',$var);
  118. }
  119. /**
  120. * Render hands free panel
  121. *
  122. * @global numeric $loged
  123. * @param array $elements_arr
  124. * @param numeric $size
  125. * @return string
  126. */
  127. function render_hands_free($elements_arr,$size) {
  128. global $loged;
  129. $vars=array('elements'=>$elements_arr,'size'=>$size,'loged'=>$loged);
  130. return render_template(TPL_UTILS.'/hands_free.tpl.php',$vars);
  131. }
  132. /**
  133. * Render search panel
  134. *
  135. * @return string
  136. */
  137. function render_search_panel() {
  138. return render_template(TPL_UTILS.'/search_panel.tpl.php',null);
  139. }
  140. /**
  141. * Render registration page
  142. *
  143. * @param array $array
  144. * @return string
  145. */
  146. function render_register_page($array) {
  147. return render_template(TPL_FRAMES.'/register.tpl.php', $array);
  148. }
  149. /**
  150. * Render login page
  151. *
  152. * @param numeric $login
  153. * @param string $current
  154. * @param numeric $js
  155. * @param numeric $new
  156. * @return string
  157. */
  158. function render_login($login,$current,$js,$new,$err=0) {
  159. return render_template(TPL_FRAMES.'/login.tpl.php',array('login'=>$login,'current'=>$current,'js'=>$js,'new'=>$new));
  160. }
  161. /**
  162. * Render comment output
  163. *
  164. * @param class_com $com
  165. * @param numeric $avatar_use
  166. * @param numeric $allow_edit
  167. * @param numeric $allow_delete
  168. * @param string $cur
  169. * @param numeric $loged
  170. * @param numeric $pid
  171. * @param numeric $js
  172. * @return string
  173. */
  174. function render_comment($com,$avatar_use,$allow_edit,$allow_delete,$cur,$loged,$pid,$js,$allow_comment=0,$avatar=null) {
  175. $vars=array("comment"=>$com,"avatar_use"=>$avatar_use,"allow_edit"=>$allow_edit,
  176. "allow_delete"=>$allow_delete,"current"=>$cur,"loged"=>$loged,"pid"=>$pid,"js"=>$js,"allow_comment"=>$allow_comment,'avatar'=>$avatar);
  177. return render_template(TPL_FRAMES.'/comment.tpl.php', $vars);
  178. }
  179. /**
  180. * Render tags
  181. *
  182. * @param array $tags
  183. * @return string
  184. */
  185. function render_tags($tags) {
  186. return render_template(TPL_UTILS.'/tags.tpl.php', array("tags" => $tags));
  187. }
  188. /**
  189. * Render users and blogs top list
  190. *
  191. * @param array $users
  192. * @param array $blogs
  193. * @return string
  194. */
  195. function render_tops($users,$blogs,$city_num,$users_num,$blogs_num) {
  196. return render_template(TPL_UTILS.'/tops.tpl.php', array("users"=>$users, "blogs"=>$blogs,'city_num'=>$city_num,
  197. 'users_num'=>$users_num,'blogs_num'=>$blogs_num));
  198. }
  199. /**
  200. * Render online and new users list
  201. *
  202. * @param array $online
  203. * @param array $new
  204. * @return string
  205. */
  206. function render_online_and_new($online, $new) {
  207. return render_template(TPL_UTILS.'/online_new.tpl.php', array("online"=>$online, "new"=>$new));
  208. }
  209. /**
  210. * Render comment creation page
  211. *
  212. * @param string $old_comment
  213. * @param numeric $lvl
  214. * @param string $current
  215. * @param numeric $id
  216. * @return string
  217. */
  218. function render_new_comment($old_comment,$lvl,$current,$id) {
  219. return render_template(TPL_FRAMES.'/new_comment.tpl.php',
  220. array("comment"=>$old_comment,"lvl"=>$lvl,"current"=>$current,"id"=>$id));
  221. }
  222. /**
  223. * Render change password page
  224. *
  225. * @param string $login
  226. * @return string
  227. */
  228. function render_change_password($login) {
  229. return render_template(TPL_FRAMES.'/change_password.tpl.php', array("login"=>$login));
  230. }
  231. /**
  232. * Render edit comment page
  233. *
  234. * @param numeric $id
  235. * @param string $text
  236. * @return string
  237. */
  238. function render_edit_comment($id,$text) {
  239. return render_template(TPL_FRAMES.'/edit_comment.tpl.php',array('id'=>$id,'text'=>$text));
  240. }
  241. /**
  242. * Render posts
  243. *
  244. * @param array $array
  245. * @return string
  246. */
  247. function render_post($array) {
  248. return render_template(TPL_FRAMES.'/post.tpl.php', $array);
  249. }
  250. /**
  251. * Render answer
  252. *
  253. * @param array $array
  254. * @param numeric $answered
  255. * @param numeric $id
  256. * @param numeric $loged
  257. * @param string $action
  258. * @return string
  259. */
  260. function render_answer($array,$answered,$id=0,$loged=1,$action="") {
  261. return render_template(TPL_FRAMES.'/answer.tpl.php',
  262. array('elements'=>$array,'answered'=>$answered,'id'=>$id,'loged'=>$loged,'action'=>$action));
  263. }
  264. /**
  265. * Render form for editing post
  266. *
  267. * @param string $title
  268. * @param numeric $blogs
  269. * @param string $url
  270. * @param numeric $type
  271. * @param array $tags
  272. * @param string $status
  273. * @param string $text
  274. * @param string $lnk
  275. * @param numeric $draft
  276. * @return string
  277. */
  278. function render_edit_post($title,$blogs,$url,$type,$tags,$status,$text=null,$lnk=null,$draft=null) {
  279. return render_template(TPL_FRAMES.'/edit_post.tpl.php', array('title'=>$title,'blogs'=>$blogs,
  280. 'url'=>$url,$type=>'1','text'=>$text,'tags'=>$tags,'lnk'=>$lnk,'status'=>$status,'draft'=>$draft));
  281. }
  282. /**
  283. * Render form for editing user personal settings
  284. *
  285. * @param array $array
  286. * @return string
  287. */
  288. function render_edit_user($array) {
  289. return render_template(TPL_FRAMES.'/edit_user.tpl.php', $array);
  290. }
  291. /**
  292. * Render list of user blog
  293. *
  294. * @param array $array
  295. * @param numeric $single
  296. * @param numeric $loged
  297. * @return string
  298. */
  299. function render_myblog($array,$single=0,$loged=1) {
  300. return render_template(TPL_FRAMES.'/myblog.tpl.php', array('blogs'=>$array,'loged'=>$loged,'single'=>$single));
  301. }
  302. /**
  303. * Render post creation form
  304. *
  305. * @param numeric $type
  306. * @param numeric $type_
  307. * @param numeric $tp
  308. * @param array $blogs
  309. * @param numeric $len
  310. * @return string
  311. */
  312. function render_new_post($type,$type_,$tp,$blogs,$len=0) {
  313. return render_template(TPL_FRAMES.'/new_post.tpl.php', array('type'=>$type,$type_=>'1','tp'=>$tp,
  314. 'blogs'=>$blogs,'len'=>$len));
  315. }
  316. /**
  317. * Render page changer
  318. *
  319. * @param numeric $start
  320. * @param numeric $count
  321. * @param numericc $all_count
  322. * @param numeric $current_num
  323. * @param numeric $end
  324. * @return string
  325. */
  326. function render_paginator($start,$count,$all_count,$current_num=0,$end=null) {
  327. $k=1;
  328. $pages=null;
  329. $prev=0;
  330. $prev_url=null;
  331. if ($current_num>=$count) {
  332. // echo "<a class='nomnm' id='prev' href='".$inser."from/".($current_num-$count).$fnd."'>&#8592; </a>";
  333. $prev=1;
  334. $prev_url=$start."from/".($current_num-$count).$end;
  335. if ($current_num-$count==0) {
  336. $prev_url=$start.$end;
  337. }
  338. }
  339. $numb=0;
  340. while ($all_count>0 && $numb<10) {
  341. $current=0;
  342. // if ($k==1) echo 1;
  343. if (($k-1-$current_num/$count)<5 && ($k-1-$current_num/$count)>-5) {
  344. if ($current_num==($k-1)*$count) {
  345. // echo "<span class='nmn'>$k</span> ";
  346. $current=1;
  347. }
  348. // echo ("<a class='nmn' href='".$inser."from/".(($k-1)*$count).$fnd."'>$k</a> ");
  349. $numb++;
  350. $url=$start."from/".(($k-1)*$count).$end;
  351. if ($k-1==0) {
  352. $url=$start.'from/0'.$end;
  353. }
  354. $pages[]=array('current'=>$current,'number'=>$k,'url'=>$url);
  355. }
  356. $k++;
  357. $all_count-=$count;
  358. }
  359. $next=0;
  360. $next_url=null;
  361. if ($current_num<($k-2)*$count) {
  362. // echo "<a class='nomnm' id='next' href='".$inser."from/".($current_num+$count).$fnd."'> &#8594;</a>";
  363. $next=1;
  364. $next_url=$start."from/".($current_num+$count).$end;
  365. }
  366. //echo "<br />";
  367. $wtch=0;
  368. $show_first=0;
  369. $first_url=null;
  370. if ($current_num>=5*$count) {
  371. // echo "<a class='nomnm' href='".$inser."from/0".$fnd."'>&#8612; ??????</a>";
  372. $show_first=1;
  373. $first_url=$start.$end;
  374. // $wtch=1;
  375. }
  376. $show_last=0;
  377. $last_url=null;
  378. if ($current_num<($k-6)*$count) {
  379. // if ($wtch==1) {echo "||";}
  380. $show_last=1;
  381. $last_url=$start."from/".(($k-2)*$count).$end;
  382. // echo "<a class='nomnm' href='".$inser."from/".($k-2)*$count.$fnd."'>????? &#8614; </a>";
  383. }
  384. return render_template(TPL_FRAMES.'/paginator.tpl.php',array('prev'=>$prev,'prev_url'=>$prev_url,
  385. 'next'=>$next,'next_url'=>$next_url,'pages'=>$pages,'show_first'=>$show_first,'first_url'=>$first_url,
  386. 'show_last'=>$show_last,'last_url'=>$last_url));
  387. }
  388. /**
  389. * Render errors
  390. *
  391. * @param string $text
  392. * @param numeric $id
  393. * @return string
  394. */
  395. function render_error($text,$id=null) {
  396. return render_template(TPL_FRAMES.'/error.tpl.php', array('text'=>$text,'id'=>$id));
  397. }
  398. /**
  399. * Render result of tag <user />
  400. *
  401. * @param string $name
  402. * @return string
  403. */
  404. function render_user_tag($name) {
  405. $usr=new user();
  406. $usr->find($name);
  407. if ($usr->av) {$avatar="res.php?t=av&img=".$usr->av;} else {$avatar="style/img/figure.gif";}
  408. return render_template(TPL_EDITOR.'/user.tpl.php', array('name' => $name, 'blocked' => $usr->lck, 'avatar' => $avatar));
  409. }
  410. /**
  411. * Render comment after rendering
  412. *
  413. * @global int $loged
  414. * @global user $usr
  415. * @param string $text
  416. * @return string
  417. */
  418. function post_render_comment($text,$v_date=0) {
  419. function check_date($text,$date,$name) {
  420. // echo $text
  421. global $v_date,$usr;
  422. if ($name==$usr->login) {return null;} else
  423. if ($v_date==0) { return null;}
  424. else if ($date>$v_date) { return $text;}
  425. // return null;
  426. // echo 'n';
  427. }
  428. function return_time($time) {
  429. return date('d.m.y H:i', $time+TZ);
  430. }
  431. global $loged,$usr,$elvl;
  432. $text = preg_replace(
  433. "/{date user\='([^']*?)' time\='([^']*?)'}(.*?){\/date}/ise",
  434. "check_date('$3','$2','$1')",
  435. $text
  436. );
  437. if ($loged==1) {
  438. $text=remove_tpl_tag($text, 'loged');
  439. if ($usr->lvl>=$elvl /*|| ($com->auth == $usr->login && $cedit==1)*/) {
  440. $text=remove_tpl_tag($text, 'allow_edit');
  441. } else {
  442. $text=remove_tpl_tag_content($text, 'allow_edit');
  443. }
  444. if ($usr->lvl>=$elvl) {
  445. $text=remove_tpl_tag($text, 'allow_delete');
  446. } else {
  447. $text=remove_tpl_tag_content($text, 'allow_delete');
  448. }
  449. } else {
  450. $text=remove_tpl_tag_content($text, 'loged');
  451. $text=remove_tpl_tag_content($text, 'allow_edit');
  452. $text=remove_tpl_tag_content($text, 'allow_delete');
  453. }
  454. $text = preg_replace(
  455. "/{time}(\d*?){\/time}/ise",
  456. "return_time($1)",
  457. $text
  458. );
  459. return $text;
  460. }
  461. function post_render_menu($text) {
  462. function menu_active($url,$text) {
  463. global $menu_active;
  464. if ($url==$menu_active) {
  465. return $text;
  466. } else return null;
  467. }
  468. function before_active($url,$text) {
  469. global $menu_active,$menu_before_active;
  470. if ($url==$menu_before_active && $menu_active!='.') {
  471. return $text;
  472. } else return null;
  473. }
  474. $text = preg_replace(
  475. "/{active\='([^']*?)'}(.*?){\/active}/ise",
  476. "menu_active('$1','$2')",
  477. $text
  478. );
  479. $text = preg_replace(
  480. "/{before_active\='([^']*?)'}(.*?){\/before_active}/ise",
  481. "before_active('$1','$2')",
  482. $text
  483. );
  484. return $text;
  485. }
  486. ?>