<?php
/*---------------------------------------------
MAIAN RECIPE v2.0
Written by David Ian Bennett
E-Mail: hide@address.com
Website: www.maianscriptworld.co.uk
This File: Admin - Comments
----------------------------------------------*/
if (!defined('PARENT')) { include('index.html'); exit; }
$thisRecipe = getTableData('recipes','id',(int)$_GET['recipe']);
$SQL_SEARCH = '';
if (isset($_GET['keywords'])) {
$SQL_SEARCH = "AND MATCH(comment,leftBy) AGAINST('".mysql_real_escape_string($_GET['keywords'])."' IN BOOLEAN MODE)";
}
?>
<!-- Start Body Area -->
<div id="bodyArea">
<?php
if (isset($OK)) {
echo actionCompleted(count($_POST['comment']).' '.$comments30);
}
?>
<div class="mainHead">
<span class="headLeft" style="margin-bottom:10px">
<span class="quickJump"><?php echo $script15; ?>:
<select onchange="if(this.value!= 0){location=this.options[this.selectedIndex].value}">
<option value="0">---</option>
<option value="?p=edit&id=<?php echo $_GET['recipe']; ?>"><?php echo $edit; ?></option>
<?php
if ($thisRecipe->isApproved=='no') {
?>
<option value="?p=comments&recipe=<?php echo $_GET['recipe']; ?>" selected="selected"><?php echo $comments19; ?></option>
<?php
}
?>
<option value="?p=pictures&recipe=<?php echo $_GET['recipe']; ?>"><?php echo $pictures9; ?></option>
</select>
</span>
<?php echo str_replace('{url}','?p=recipes',$comments21); ?>
</span>
<span class="headLeft" style="background:#fff;color:#4e626c"><?php echo $pictures; ?>:
<select onchange="if(this.value!= 0){location=this.options[this.selectedIndex].value}">
<?php
$q_cats = mysql_query("SELECT * FROM ".$database['prefix']."categories
WHERE isParent = 'yes'
AND childOf = '0'
ORDER BY catname") or die(mysql_error());
while ($CATS = mysql_fetch_object($q_cats)) {
$q_recipes = mysql_query("SELECT * FROM ".$database['prefix']."recipes
WHERE cat = '$CATS->id'
ORDER BY name
") or die(mysql_error());
if (mysql_num_rows($q_recipes)>0) {
?>
<optgroup label="<?php echo cleanData($CATS->catname); ?>">
<?php
while ($RECIPES = mysql_fetch_object($q_recipes)) {
?>
<option value="?p=comments&recipe=<?php echo $RECIPES->id ; ?>"<?php echo (isset($_GET['recipe']) && $_GET['recipe']==$RECIPES->id ? ' selected="selected"' : ''); ?>><?php echo cleanData($RECIPES->name) ; ?> (<?php echo rowCount('comments',' WHERE isApproved = \'no\' AND recipe = \''.$RECIPES->id.'\''); ?>)</option>
<?php
}
?>
</optgroup>
<?php
}
$q_children = mysql_query("SELECT * FROM ".$database['prefix']."categories
WHERE isParent = 'no'
AND childOf = '".$CATS->id."'
ORDER BY catname") or die(mysql_error());
while ($CHILDREN = mysql_fetch_object($q_children)) {
$q_recipes = mysql_query("SELECT * FROM ".$database['prefix']."recipes
WHERE cat = '$CHILDREN->id'
ORDER BY name
") or die(mysql_error());
if (mysql_num_rows($q_recipes)>0) {
?>
<optgroup label="<?php echo cleanData($CHILDREN->catname); ?>">
<?php
while ($RECIPES = mysql_fetch_object($q_recipes)) {
?>
<option value="?p=comments&recipe=<?php echo $RECIPES->id ; ?>"<?php echo (isset($_GET['recipe']) && $_GET['recipe']==$RECIPES->id ? ' selected="selected"' : ''); ?>><?php echo cleanData($RECIPES->name) ; ?> (<?php echo rowCount('comments',' WHERE isApproved = \'no\' AND recipe = \''.$RECIPES->id.'\''); ?>)</option>
<?php
}
?>
</optgroup>
<?php
}
}
}
?>
</select>
</span>
<?php
if (isset($_GET['recipe'])) {
?>
<form method="post" id="form" action="?p=comments&recipe=<?php echo $_GET['recipe']; ?>" onsubmit="return confirmMessage('<?php echo $javascript; ?>')">
<?php
$q_comms = mysql_query("SELECT *,DATE_FORMAT(addDate,'".MYSQL_DATE_FORMAT."') AS adate FROM ".$database['prefix']."comments
WHERE isApproved = 'no'
AND recipe = '".(int)$_GET['recipe']."'
$SQL_SEARCH
ORDER BY recipe
") or die(mysql_error());
if (mysql_num_rows($q_comms)>0) {
?>
<p><span class="noData" style="text-align:left;font-size:12px">
<span class="filterByComments"><?php echo str_replace('{count}',rowCount('comments',' WHERE isApproved = \'no\' AND recipe = \''.(int)$_GET['recipe'].'\''),$comments22); ?></span>
<input type="checkbox" name="log" onclick="selectAll()" /> <?php echo $comments9; ?>
</span>
</p>
<?php
while ($COMMENTS = mysql_fetch_object($q_comms)) {
$RECIPE = getTableData('recipes','id',$COMMENTS->recipe);
?>
<div class="comment">
<p><a href="?p=edit-comment&id=<?php echo $COMMENTS->id; ?>" onclick="$.GB_show(this.href, {height: 400,width: 800,caption: this.title});return false;" title="<?php echo $comments4; ?>"><?php echo $comments4; ?></a></p>
<input style="vertical-align:middle" type="checkbox" name="comment[]" value="<?php echo $COMMENTS->id; ?>" /> <span class="leftBy" style="font-size:12px">(<?php echo str_replace(array('{name}','{date}'),array(cleanData($COMMENTS->leftBy),$COMMENTS->adate),$comments8); ?>)</span> <a href="mailto:<?php echo $COMMENTS->email; ?>"><img src="templates/images/contact.png" alt="<?php echo str_replace('{name}',cleanData($COMMENTS->leftBy),$comments23); ?>" title="<?php echo str_replace('{name}',cleanData($COMMENTS->leftBy),$comments23); ?>" /></a>
</div>
<?php
}
?>
<p>
<span style="display:block;padding-top:10px"><input type="hidden" name="process" value="1" />
<input type="hidden" name="recipe" value="<?php echo (isset($_GET['recipe']) ? $_GET['recipe'] : '0'); ?>" />
<input class="button" type="submit" value="<?php echo $comments31; ?>" title="<?php echo $comments31; ?>" />
</span>
</p>
<?php
} else {
?>
<span class="noData"><?php echo $comments24; ?></span>
<?php
}
?>
</form>
<?php
if (mysql_num_rows($q_comms)>0) {
echo pageNumbers(rowCount('comments',(isset($_GET['recipe']) ? ' WHERE isApproved = \'no\' AND recipe = \''.(int)$_GET['recipe'].'\'' : ' WHERE isApproved = \'no\'').' '.$SQL_SEARCH),PER_PAGE,$page);
}
?>
<p> </p>
<?php
}
?>
</div>
<br class="break" />
</div>
<!-- End Body Area -->