Datalife Engine 14.0
- Temalara yeni taglar eklendi ve geliştirildi
- Yeni AirPlay medya oynatıcısı eklendi
- 1500 adet yeni ifade (emoji) eklendi
TPL dosyalarında config değerlerini kullanma
Bu eklenti ile sitenizdeki tüm ayarlama değerlerini tpl dosyalarınızda kullanabilirsiniz.
Dosya: engine/classes/templates.class.php
Bul:
Üstüne Ekle:
Bul:
Üstüne Ekle:
Örnek:
engine/data/config.php'yi açarak, yukarıdaki örneğe göre tüm değerleri kullanabilirsiniz.
Dosya: engine/classes/templates.class.php
Bul:
if (strpos ( $this->template, "[aviable=" ) !== false) {
Üstüne Ekle:
// Use Config in TPL
if (strpos ( $this->template, "{config:" ) !== false) {
$this->template = preg_replace_callback ( "#\\{config:(.*?)\\}#is", array( &$this, 'check_confvar'), $this->template );
}
// Use Config in TPL
Bul:
function check_module( $matches=array() ) {
Üstüne Ekle:
// Use Config in TPL
function check_confvar( $matches=array() ) {
global $config;
$_key = trim( $matches[1] );
if ( array_key_exists( $_key, $config ) ) {
return $config[ $_key ];
} else return "";
}
// Use Config in TPL
Örnek:
{config:home_title}
engine/data/config.php'yi açarak, yukarıdaki örneğe göre tüm değerleri kullanabilirsiniz.
Bilgilendirme
Yorum Ekleyebilmeniz için Sitemize Kayıt Olmanız Gerekmektedir.