<?php

/*
 * Created on 10/29/2012
 *
 */
include_once '../php/piute_includes.php';
session_start();
redirectIfNotInRole('super user', '../not-allowed.php');
$selectedRoleId = $_POST['correspondence_role_id'];
if (!isset($selectedRoleId)) {
    $selectedRoleId = -1;
} else {
    $selectedRole = getRoleById($selectedRoleId);
}
$allRoles = getAllRoles();
?>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Role Correspondences</title>
        <link href="AdminCSS.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    
    <a href="../">Piute Ponds Home Page</a>
    <br/>
    <a href="admin_home.php">Admin Home</a>
    <br/>
    <a href="correspondence_all.php">Correspondence Home</a>
    <br/>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php 
/*
 * Created on Aug 19, 2010
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */
include_once 'php/piute_includes.php';
session_start();
redirectIfNotInRole('hunter', '../not-allowed.php');
$blindCount = getBlindCount();
$speciesList = getAllSpecies();
$areaList = getDisplay('areas');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Piute Ponds Hunter Harvest Add</title>

<SCRIPT LANGUAGE="JavaScript" SRC="calendar/CalendarPopup.js"></SCRIPT>
<SCRIPT LANGUAGE="JavaScript">document.write(getCalendarStyles());</SCRIPT>


<STYLE>
    .CALcpYearNavigation,
    .CALcpMonthNavigation
            {
            background-color:#6677DD;
            text-align:center;
            vertical-align:center;
Ejemplo n.º 3
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php 
/*
 * Created on Aug 19, 2010
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */
include_once 'php/piute_includes.php';
session_start();
redirectIfNotInRole('dev', '../not-allowed.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Piute Ponds Hunter Harvest</title>
<style type="text/css">
<!--
#apDiv2 {
	position:absolute;
	left:50%;
	top:0px;
	width:720px;
	margin-left: -360px;
	height:1901px;
	z-index:2;
	background-color: #FFF;
}
#apDiv3 {
	position:absolute;
	left:50%;
Ejemplo n.º 4
0
<?php

/*
 * Created on March 5, 2013
 *
 */
require_once dirname(__FILE__) . '/bagCheckIncludes.php';
session_start();
redirectIfNotInRole('super user', dirname(__FILE__) . '/../not-allowed.php');
$allSpeciesList = getAllSpecies();
$bagCheckInfo = getBagCheckInfo();
$blindList = $bagCheckInfo->getBlindList();
$formattedDate = formatDate($bagCheckInfo->getDate(), "m/d/Y");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bag Load Form</title>

<script language="JavaScript" SRC="../calendar/CalendarPopup.js"></script>
<script language="JavaScript">document.write(getCalendarStyles());</script>

<link href="bagCheck.css" rel="stylesheet" type="text/css" />

<script language="JavaScript">
	function isEmpty(str) {
		return (!str || 0 === str.length);
	}
	function addBlindAction(currentBlindIndex) {
		form=document.getElementById("bag_check_form_id");
		customAction="bagCheckAddBlindAction.php?current_blind_index="+currentBlindIndex;