Jump to content
xt:Commerce Community Forum

Smarty & Dreamweaver


masternemo

Recommended Posts

F?r die Leute die mit dreamweaver arbeiten, w?re es von Vorteil wenn die Template-Einbindung statt mit {} mit <{}> w?ren. Es gibt daf?r sogar 2 M?glichkeiten, entweder man ?ndert es selbst in der Smarty.class.php in den Zeilen 1247 und 1248

von:


    $this->left_delimiter = '{';

    $this->right_delimiter = '}';

nach:

    $this->left_delimiter = '<{';

    $this->right_delimiter = '}>';

oder man macht es beim Funktionsaufruf ungef?hr so:

class Template extends Smarty {

/**

* Constructor

*/

function Template() {

$this->Smarty();

$this->left_delimiter = '<{';

$this->right_delimiter = '}>';

$this->template_dir = xtcGetLocalPath(XTC_SMARTY_TMP_PATH) . '/templates';

$this->compile_dir = xtcGetLocalPath(XTC_SMARTY_TMP_PATH) . '/templates_c';

// $this->config_dir = xtcGetLocalPath(XTC_SMARTY_TMP_PATH) . '/configs/';

$this->cache_dir = xtcGetLocalPath(XTC_SMARTY_TMP_PATH) . '/cache';

$this->plugins_dir = xtcGetLocalPath(SMARTY_DIR) . '/plugins';

$this->use_sub_dirs = false;

$thstamp = mktime(0, 0, 0, date ("m") , date ("d")+80, date("Y"));

$xtc_date = date("D,d M Y", $thstamp);

$this->assign(array('oos_html_params' => HTML_PARAMS,

'xtc_charset' => CHARSET,

'xtc_store_name' => STORE_NAME,

'xtc_revision_date' => $xtc_date,

'xtc_version' => PROJECT_VERSION,

'xtc_imageurl' => XTC_IMAGES,

'xtc_icon' => XTC_ICONS,

'xtc_date_long' => strftime(DATE_FORMAT_LONG)));

}

}

Gru?

MasterNemo

Link to comment
Share on other sites

F?r die Leute die mit dreamweaver arbeiten, w?re es von Vorteil wenn die Template-Einbindung statt mit {} mit <{}> w?ren. Es gibt daf?r sogar 2 M?glichkeiten, entweder man ?ndert es selbst in der Smarty.class.php in den Zeilen 1247 und 1248

von:

wieso ion xtc ?ndern ? kannst doch auch einen {} code tag in dreamwaever anlegen =)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...