Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

How to define constructor?

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Smarty 3
View previous topic :: View next topic  
Author Message
piropeator
Smarty Rookie


Joined: 31 Oct 2007
Posts: 26

PostPosted: Tue Dec 24, 2013 6:44 pm    Post subject: How to define constructor? Reply with quote

In this class
Code:
<?php

include_once SMARTY_BASEFILE;

class Plantilla extends Smarty {

   public function __construct(){
        //constructor
    }

   function Plantilla() {

        $this->template_dir = APP_BASEDIR .'/plantillas/templates/';
        $this->compile_dir  = APP_BASEDIR .'/plantillas/templates_c/';
        $this->config_dir   = APP_BASEDIR .'/plantillas/configs/';
        $this->cache_dir    = APP_BASEDIR .'/plantillas/cache/';
   } 
}
?>

I have a mistake :
Code:
Fatal error: Call to a member function createTemplate() on a non-object in C:\www\prueba\lib\Smarty-3.1.15\sysplugins\smarty_internal_templatebase.php on line 47
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Tue Dec 24, 2013 8:05 pm    Post subject: Reply with quote

Code:
<?php

include_once SMARTY_BASEFILE;

class Plantilla extends Smarty {

   public function __construct(){
        //constructor
        parent::__construct();
    }

   function Plantilla() {

        $this->template_dir = APP_BASEDIR .'/plantillas/templates/';
        $this->compile_dir  = APP_BASEDIR .'/plantillas/templates_c/';
        $this->config_dir   = APP_BASEDIR .'/plantillas/configs/';
        $this->cache_dir    = APP_BASEDIR .'/plantillas/cache/';
   } 
}
?>
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Smarty 3 All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP