コード例 #1
0
<?php

/*
to view the initer :
echo $this->showIniter();
or better way
uncomment in this file the line : //$content.=$this->showIniter();
*/
$instanceAjax = new Example($this->initer);
$content = "";
//$content.=$this->showIniter();
$content .= $instanceAjax->content_loader();
$this->tpl->remplir_template("content", $content);
/*
//ou bien selon tpl
$data=$instanceAjax->data_loader();
$this->tpl->remplir_template("data",$data);
*/
コード例 #2
0
<?php

/*
to view the initer :
echo $this->showIniter();
or better way
uncomment in this file the line : //$content.=$this->showIniter();
*/
$this->initer['mainsubtitle'] = "Example";
//use $this->initer['varname'] to update and $this->varname to use or print
//if your update doesnt work, add a $this->reloadIniter(); line after your changements
$instancePage = new Example($this->initer);
$content = "";
//$content.=$this->showIniter();
$content .= $instancePage->content_loader();
$this->tpl->remplir_template("content", $content);
//example mail
if ($this->includer->include_pratikclass("mail")) {
    $instanceMail = new PratikMail($this->initer);
    $data = array("objet" => "Test", "texte" => "Text test");
    $instanceMail->construct_mail("custom", $data);
    //,"mainmailcontent","mainmail");
    //$resultsentmail=$instanceMail->send_mail($instanceMail->objet,array("*****@*****.**"));
    //print_r($resultsentmail);
}