Example #1
0
?>
		<div class="sep caption"><?php 
echo _KEYWORDS;
?>
:</div>
		<div class="container2" id="keywords">
			<?php 
iefixStart();
if (isLoggedIn()) {
    // If the submission is mature, display this information on the
    // content details panel.
    $objFilters = preg_split('/[\\s\\,\\;]/', $objData["objMature"], 64, PREG_SPLIT_NO_EMPTY);
    ?>
				<div class="f_right mar_left mar_right mar_bottom">
					<?php 
    foreach (getEnabledFilters() as $filter) {
        if (in_array($filter, $objFilters)) {
            echo "&bull; " . getFilterName($filter) . "<br />";
        }
    }
    ?>
					<div class="sep a_right smalltext">
						<a href="<?php 
    echo url("site");
    ?>
"><?php 
    echo _SET_FILTERS;
    ?>
							<?php 
    echo getIMG(url() . "images/emoticons/nav-next.png");
    ?>
Example #2
0
?>
 />
</div>
<div class="sep caption"><?php 
echo _COMMENT;
?>
:</div>
<table cellspacing="0" cellpadding="0" border="0" class="notsowide"><tr><td>
<?php 
$commentDefault = isset($_POST["comment"]) ? $_POST["comment"] : "";
$commentNoOptions = true;
include INCLUDES . "mod_comment.php";
?>
</td></tr></table>
<?php 
$filters = getEnabledFilters();
$userFilters = preg_split('/\\,/', $_auth["useObjFilters"], 64, PREG_SPLIT_NO_EMPTY);
$found = false;
if (atLeastModerator()) {
    $userFilters = array();
}
ob_start();
?>
<div class="sep caption">
	<?php 
echo _FILTER_OPTIONS;
?>
:
	&nbsp; &nbsp;
	<a style="font-weight: normal" href="<?php 
echo url("helpdesk/faq/filters/nudity");
Example #3
0
echo _FILTERS;
?>
</div>
	<div class="container2 notsowide">
		<div>
			<?php 
echo _SET_FILTER_INTRO;
?>
		</div>
		<div class="sep">
			<table cellspacing="0" cellpadding="4" border="0">
			<tr>
			<?php 
$cols = 0;
$objFilters = preg_split('/[\\s\\,\\;]/', $_auth["useObjFilters"], 64, PREG_SPLIT_NO_EMPTY);
$F = getEnabledFilters();
if ($_config["extrasRatio"] != "0:1") {
    $F[] = -1;
    if ($_auth["useHideExtras"]) {
        $objFilters[] = -1;
    }
}
foreach ($F as $filter) {
    if (in_array($filter, $hideFilters)) {
        continue;
        // Skip hidden filters.
    }
    if ($cols > 1) {
        ?>
					</tr><tr>
					<?php