LotGDocker/lotgd-web/lotgd/lib/holiday_texts.php

23 lines
458 B
PHP
Raw Normal View History

2020-08-17 19:16:42 -04:00
<?php
// addnews ready
// translator ready
// mail ready
require_once("lib/modules.php");
function holidayize($text,$type='unknown'){
global $session;
if (!isset($session['user']['prefs']['ihavenocheer']))
$session['user']['prefs']['ihavenocheer'] = 0;
if ($session['user']['prefs']['ihavenocheer']) {
return $text;
}
$args = array('text'=>$text,'type'=>$type);
$args = modulehook("holiday", $args);
$text = $args['text'];
return $text;
}
?>