<?php
(!defined('IN_PowerBB')) ? die() : '';
$CALL_SYSTEM = array();
$CALL_SYSTEM['ICONS'] = true;
include('common.php');
define('CLASS_NAME','PowerBBSmileMOD');
class PowerBBSmileMOD
{
function run()
{
global $PowerBB;
if ($PowerBB->_GET['all'])
{
$this->_OpinWindoSmile();
}
}
function _OpinWindoSmile()
{
global $PowerBB;
$PowerBB->_CONF['template']['while']['SmlList'] = $PowerBB->icon->GetSmileList($SmlArr);
$PowerBB->template->display('smile_all');
}
}
?>