CODE STYLE

files modified:   events/eventList.php
                  events/eventsAjax.php
                  events/eventsCompleted.php
                  events/eventsDelete.php
                  events/eventsEdit.php
                  events/eventsEditAction.php
                  events/eventsNew.php
                  events/eventsNewAction.php
                  events/eventsPending.php
                  events/eventsSave.php
                  events/eventsSetupGraph.php
                  events/triggersSave.php
This commit is contained in:
Ralph Asendeteufrer
2012-10-18 14:36:10 -04:00
parent 69430f9778
commit 53ca0e8089
12 changed files with 14 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
<?php
/**
* eventList.php
*

View File

@@ -1,4 +1,5 @@
<?php
//$req = $_POST['request'];
$req = (isset($_POST['request']))? $_POST['request']:((isset($_REQUEST['request']))? $_REQUEST['request'] : 'No hayyy tal');

View File

@@ -1,4 +1,5 @@
<?php
/**
* eventsCompleted.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_Delete.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_Edit.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_EditAction.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_New.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_NewAction.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* eventsPending.php
*

View File

@@ -1,4 +1,5 @@
<?php
/**
* events_Save.php
*

View File

@@ -9,19 +9,19 @@ if ($t != 's') {
$t = 'm';
}
//when occurs, after time elapses or when starting
//when occurs, after time elapses or when starting
$o = isset( $_GET['o'] ) ? $_GET['o'] : 's';
if ($t != 's') {
$t = 'a';
}
//status
//status
$s = isset( $_GET['s'] ) ? $_GET['s'] : 'a';
if ($s != 'a') {
$s = 'i';
}
//timeUnit
//timeUnit
$timeunit = isset( $_GET['t'] ) ? $_GET['t'] : 'Days';
$timeunit = ucfirst( strtolower( $timeunit ) );

View File

@@ -1,4 +1,5 @@
<?php
/**
* triggers_Save.php
*