Advertisement
Guest User

Untitled

a guest
Jun 27th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. class listing {
  15. var $m_class = null;
  16. var $m_dir = null;
  17. var $m_conf_name = null;
  18. var $m_theme = null;
  19.  
  20. function listing() {
  21. controller::controller( );
  22. $this->load->lib( 'ext_smarty', '', 'smarty' );
  23. $this->load->util( 'url' );
  24. $this->m_theme = $this->smarty->get_theme( );
  25. $this->smarty->assign( 'theme', $this->smarty->get_theme( ) );
  26. $this->m_class = $this->rtr->fetch_class( );
  27. $this->m_dir = $this->rtr->fetch_directory( );
  28. $this->m_conf_name = trim( 'front_' . $this->m_dir, '/' );
  29. $this->smarty->assign( 'co_uri', trim( $this->m_dir . $this->m_class, '/' ) . '/' );
  30. $this->smarty->assign( 'seo_title', '' );
  31. $this->smarty->assign( 'seo_description', '' );
  32. $this->smarty->assign( 'seo_keywords', '' );
  33. }
  34.  
  35. function index() {
  36. }
  37.  
  38. function details() {
  39. $this->smarty->assign( 'content', $this->smarty->fetch( $this->m_theme . '/tpls/properties/property_details.tpl' ) );
  40. $this->smarty->view( $this->m_theme . '/tpls/index_details.tpl' );
  41. }
  42.  
  43. function review() {
  44. $this->smarty->assign( 'content', $this->smarty->fetch( $this->m_theme . '/tpls/properties/property_write_review.tpl' ) );
  45. $this->smarty->view( $this->m_theme . '/tpls/index_details.tpl' );
  46. }
  47.  
  48. function book() {
  49. $this->smarty->assign( 'content', $this->smarty->fetch( $this->m_theme . '/tpls/properties/property_book.tpl' ) );
  50. $this->smarty->view( $this->m_theme . '/tpls/index_details.tpl' );
  51. }
  52.  
  53. function send_to_friend() {
  54. $this->smarty->assign( 'content', $this->smarty->fetch( $this->m_theme . '/tpls/forms/form_send_to_friend.tpl' ) );
  55. $this->smarty->view( $this->m_theme . '/tpls/index_ajax_page.tpl' );
  56. }
  57.  
  58. ..................................................
  59. ..........................
  60. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement