Eklenti Geliştirme Örnekleri

DLE için eklenti geliştirmek isteyenler için temel ve orta seviye örnekleri aşağıda bulabilirsiniz.

1. Basit Merhaba Dünya Eklentisi

<?php
if (!defined('DATALIFEENGINE')) die("Hacking attempt");
echo "<div>Merhaba DLE!</div>";
?>

2. Ziyaretçi Sayacı

<?php
if (!defined('DATALIFEENGINE')) die("Hacking attempt");
$file = ENGINE_DIR . "/data/visitcount.txt";
$count = file_exists($file) ? (int)file_get_contents($file) : 0;
$count++;
file_put_contents($file, $count);
echo "Toplam Ziyaret: " . $count;
?>

3. Rastgele Yazı

{custom category="1,2" template="shortstory" aviable="global" from="0" limit="1" order="RAND()"}

4. Ek Alan Filtreleme

{custom where="xfield = 'deger'"}