about summary refs log tree commit diff stats
path: root/data/maps/the_unyielding/rooms/Hero Room.txtpb
blob: 82c8bea94a38af63a2338f5463faec645f76c9bd (plain) (blame)
1
2
3
4
5
6
7
8
name: "Hero Room"
panels {
  name: "HER"
  path: "Panels/Door Openers/white_ne2"
  clue: "her"
  answer: "hero"
  symbols: SPARKLES
}
; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/*
       444444444  
      4::::::::4  
     4:::::::::4  
    4::::44::::4  
   4::::4 4::::4   Four Island
  4::::4  4::::4  
 4::::4   4::::4   Written and maintained by Starla Insigna
4::::444444::::444
4::::::::::::::::4  admin/editPoll.php
4444444444:::::444
          4::::4   Please do not use, reproduce or steal the
          4::::4   contents of this file without explicit
          4::::4   permission from Hatkirby.
        44::::::44
        4::::::::4
        4444444444
*/

if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);}

require('headerproc.php');

$category = 'polls';
$pageaid = 'quotes';

$template = new FITemplate('admin/writePoll');
$template->add('TITLE', 'Edit Poll');
$template->add('ACTION', '/admin/editPoll.php?id=' . $_GET['id'] . '&amp;submit=');

if (isset($_GET['submit']))
{
	if (empty($_POST['question']))
	{
		$errors[] = array(      'field' => 'question',
                                        'text' => 'Question is a required field');
	}

	if (empty($_POST['option1']))
	{
		$errors[] = array(      'field' => 'option1',
                                        'text' => 'Option 1 is a required field');
	}

	if (empty($_POST['option2']))
	{
		$errors[] = array(      'field' => 'option2',
                                        'text' => 'Option 2 is a required field');
	}

	if (empty($_POST['option3']))
	{
		$errors[] = array(      'field' => 'option3',
                                        'text' => 'Option 3 is a required field');
	}

	if (empty($_POST['option4']))
	{
		$errors[] = array(      'field' => 'option4',
                                        'text' => 'Option 4 is a required field');
	}

        if (isset($errors))
        {
                $template->adds_block('ISERROR',array('exi'=>1));

                $eid = 0;
                foreach ($errors as $error)
                {
                        $template->adds_block('ERROR', array(   'ID' => $eid,
                                                                'TEXT' => $error['text']));
                        $template->add('IS' . strtoupper($error['field']) . 'ERROR', ' error');
                        $template->adds_block(strtoupper($error['field']) . 'ERROR', array(     'ID' => $eid,
                                                                                                'TEXT' => $error['text']));

                        $eid++;
                }

		$getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id'];
		$getpoll2 = mysql_query($getpoll);
		$getpoll3 = mysql_fetch_array($getpoll2);

		$template->add('QUESTIONVALUE', htmlentities($_POST['question']));
		$template->add('OPTION1VALUE', htmlentities($_POST['option1']));
		$template->add('OPTION2VALUE', htmlentities($_POST['option2']));
		$template->add('OPTION3VALUE', htmlentities($_POST['option3']));
		$template->add('OPTION4VALUE', htmlentities($_POST['option4']));
		$template->add('TEXTVALUE', $_POST['text']);
        } else {
		$inspoll = "UPDATE polloftheweek SET question = \"" . mysql_real_escape_string($_POST['question']) . "\", option1 = \"" . mysql_real_escape_string($_POST['option1']) . "\", option2 = \"" . mysql_real_escape_string($_POST['option2']) . "\", option3 = \"" . mysql_real_escape_string($_POST['option3']) . "\", option4 = \"" . mysql_real_escape_string($_POST['option4']) . "\", text = \"" . mysql_real_escape_string($_POST['text']) . "\" WHERE id = " . $_GET['id'];
		$inspoll2 = mysql_query($inspoll);

		$template->add('QUESTIONVALUE', htmlentities($_POST['question']));
		$template->add('OPTION1VALUE', htmlentities($_POST['option1']));
		$template->add('OPTION2VALUE', htmlentities($_POST['option2']));
		$template->add('OPTION3VALUE', htmlentities($_POST['option3']));
		$template->add('OPTION4VALUE', htmlentities($_POST['option4']));
		$template->add('TEXTVALUE', $_POST['text']);

		$template->adds_block('FLASH', array('TEXT' => 'Your poll has been sucessfully edited. <a href="/poll/' . $_GET['id'] . '.php">View poll</a>.'));
	}
} else {
	$getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id'];
	$getpoll2 = mysql_query($getpoll);
	$getpoll3 = mysql_fetch_array($getpoll2);

	$template->add('QUESTIONVALUE', htmlentities($getpoll3['question']));
	$template->add('OPTION1VALUE', htmlentities($getpoll3['option1']));
	$template->add('OPTION2VALUE', htmlentities($getpoll3['option2']));
	$template->add('OPTION3VALUE', htmlentities($getpoll3['option3']));
	$template->add('OPTION4VALUE', htmlentities($getpoll3['option4']));
	$template->add('TEXTVALUE', $getpoll3['text']);
}

$template->display();

?>