0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
postnuke
/
0.764-3
/
standard
/
htdocs
/
modules
/
pn_bbsmile
/
[
Home
]
File: pnadminapi.php
<?php // $Id: pnadminapi.php 59 2006-09-09 17:48:08Z landseer $ // ---------------------------------------------------------------------- // PostNuke Content Management System // Copyright (C) 2001 by the PostNuke Development Team. // http://www.postnuke.com/ // ---------------------------------------------------------------------- // Based on: // PHP-NUKE Web Portal System - http://phpnuke.org/ // Thatware - http://thatware.org/ // ---------------------------------------------------------------------- // LICENSE // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License (GPL) // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // To read the license please visit http://www.gnu.org/copyleft/gpl.html // ---------------------------------------------------------------------- // Original Author of file: Hinrich Donner // changed to pn_bbsmile: larsneo // ---------------------------------------------------------------------- /* * This function synchronized the smilies stored in the directory with * the smilies sored in the modVar ('pn_bbsmile','smilie_array). * The function checks if there is a smilie in the directory which is * not in the modVar. If the smilie is in the modVar, the infos of the * modVar are kept. Otherwise the new smilie is addes with it default infos. * This function has to be called to include new smilies which are stored in the * auto-directory of the module. * * It can be called out of the admininterface and is called when the module * is inited and upgraded * *@params $args['forcereload'] bool */ function pn_bbsmile_adminapi_updatesmilies($args) { extract($args); unset($args); // Get the new array $new_smilies = pnModAPIFunc('pn_bbsmile', 'admin', 'load_smilies'); // Get the old array $old_smilies = unserialize(pnModGetVar('pn_bbsmile','smilie_array')); //Combine old array and new array // First create a new array $smilies = array(); // Then, check if the new smilie is in the old array // If it is included then save the old definition // Else save the new definition foreach($new_smilies as $key => $new_smilie) { if($forcereload == true) { $smilies[$key] = $new_smilie; } else { if (array_key_exists($key, $old_smilies)) { // Store the old one $smilies[$key] = $old_smilies[$key]; } else { // Store the new one $smilies[$key] = $new_smilie; } } } // Save the array pnModSetVar('pn_bbsmile','smilie_array', serialize($smilies)); // Return success return true; } /** * get all smilies */ function pn_bbsmile_adminapi_load_smilies() { // default smilies $imagepath = pnModGetVar('pn_bbsmile', 'smiliepath'); $icons = array('icon_biggrin.gif' => array('type' => 0, 'imgsrc' => 'icon_biggrin.gif' , 'alt' => 'icon_biggrin', 'short' => ':-D', 'alias' => '', 'active' => '1'), 'icon_confused.gif' => array('type' => 0, 'imgsrc' => 'icon_confused.gif' , 'alt' => 'icon_confused', 'short' => ':-?', 'alias' => '', 'active' => '1'), 'icon_cool.gif' => array('type' => 0, 'imgsrc' => 'icon_cool.gif' , 'alt' => 'icon_cool', 'short' => '8-)', 'alias' => '', 'active' => '1'), 'icon_eek.gif' => array('type' => 0, 'imgsrc' => 'icon_eek.gif' , 'alt' => 'icon_eek', 'short' => ':-O', 'alias' => '', 'active' => '1'), 'icon_evil.gif' => array('type' => 0, 'imgsrc' => 'icon_evil.gif' , 'alt' => 'icon_evil', 'short' => ':evil:', 'alias' => ':devil:', 'active' => '1'), 'icon_frown.gif' => array('type' => 0, 'imgsrc' => 'icon_frown.gif' , 'alt' => 'icon_frown', 'short' => ':-(', 'alias' => '', 'active' => '1'), 'icon_lol.gif' => array('type' => 0, 'imgsrc' => 'icon_lol.gif' , 'alt' => 'icon_lol', 'short' => ':lol:', 'alias' => '', 'active' => '1'), 'icon_mad.gif' => array('type' => 0, 'imgsrc' => 'icon_mad.gif' , 'alt' => 'icon_mad', 'short' => ':-x', 'alias' => '', 'active' => '1'), 'icon_razz.gif' => array('type' => 0, 'imgsrc' => 'icon_razz.gif' , 'alt' => 'icon_razz', 'short' => ':-P', 'alias' => '', 'active' => '1'), 'icon_redface.gif' => array('type' => 0, 'imgsrc' => 'icon_redface.gif' , 'alt' => 'icon_redface', 'short' => ':oops:', 'alias' => '', 'active' => '1'), 'icon_rolleyes.gif' => array('type' => 0, 'imgsrc' => 'icon_rolleyes.gif' , 'alt' => 'icon_rolleyes', 'short' => ':roll:', 'alias' => '', 'active' => '1'), 'icon_smile.gif' => array('type' => 0, 'imgsrc' => 'icon_smile.gif' , 'alt' => 'icon_smile', 'short' => ':-)', 'alias' => '', 'active' => '1'), 'icon_wink.gif' => array('type' => 0, 'imgsrc' => 'icon_wink.gif' , 'alt' => 'icon_wink', 'short' => ';-)', 'alias' => '', 'active' => '1')); if(pnModGetVar('pn_bbsmile', 'activate_auto') == 1) { $smiliepath_auto = pnModGetVar('pn_bbsmile', 'smiliepath_auto'); $handle=opendir($smiliepath_auto); if($handle<>false) { while ($file = readdir($handle)) { if ($file != '.' && $file != '..' && $file != 'index.html' && $file != 'CVS') { if(preg_match("/(.*?)(.gif|.jpg|.jpeg|.png)$/i", $file, $matches) <> 0) { $icons[$matches[1]] = array('type' => 1, 'imgsrc' => $matches[0], 'alt' => $matches[1], 'alias' => '', 'short' => ":" . $matches[1] . ":", 'active' => '1'); } } } } } return $icons; } ?>