This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/modules/mod_sbicons.php
2012-09-18 20:02:43 +00:00

65 lines
2.3 KiB
PHP

<?php
//-------------------------------------------------------------------
//Simpleboard Icon Set
//
//By the Two Shoes Module Factory;
//visit us at:
//http://www.tsmf-mambo.com
//
//-------------------------------------------------------------------
//PLEASE LEAVE THESE INSTRUCTIONS IN!
//
//Instructions:
//Put the file names of your custom Icon Set in this file.
//If you didn't create a particular Icon, leave the entry in this file
//but blank the name, e.g. $sbIcons['delete']='';
//If the file name is blanked, the orignal text link will be shown.
//
//-------------------------------------------------------------------
//Note: Some entries in this file are not yet used in the Simpleboard
//Forum Component. Therefore, any Icon created for it will not yet
//be displayed on the frontend. However, we plan on implementing
//these Icons, so creating them now will render your Icon Set to
//be upwards compatible with future releases of Simpleboard!
//-----------------------------------------------------------------*/
$sbIcons=array();
$sbIcons['delete'] ='delete.png';
$sbIcons['edit'] ='edit.png';
$sbIcons['lock'] ='lock.png';
$sbIcons['move'] ='move.png';
$sbIcons['new_topic'] ='new_topic.png';
$sbIcons['post'] ='post.gif';
$sbIcons['quote'] ='quote.png';
$sbIcons['reply'] ='reply.png';
$sbIcons['sticky'] ='sticky.png';
$sbIcons['subscribe'] ='subscribe.png';
$sbIcons['unlock'] ='unlock.png';
$sbIcons['unsticky'] ='unsticky.png';
$sbIcons['nexttopic'] ='';
$sbIcons['prevtopic'] ='';
$sbIcons['back'] ='';
$sbIcons['home'] ='';
$sbIcons['profile'] ='';
$sbIcons['help'] ='';
$sbIcons['menureply'] ='';
$sbIcons['flatview'] ='';
$sbIcons['threadedview'] ='';
$sbIcons['showlatest'] ='';
$sbIcons['forumlocked'] ='';
$sbIcons['forummoderated'] ='';
$sbIcons['latestpost'] ='';
$sbIcons['pendingmessages']='';
$sbIcons['nopendingmsgs'] ='';
$sbIcons['forumlist'] ='';
$sbIcons['topiclocked'] ='topiclocked.gif';
$sbIcons['topicsticky'] ='topicsticky.gif';
$sbIcons['unreadmessage'] ='post_new.gif';
$sbIcons['readmessage'] ='post_old.gif';
$sbIcons['unreadforum'] ='folder_new.gif';
$sbIcons['readforum'] ='folder.gif';
$sbIcons['pms2'] ='sendpm.gif';
?>