2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Replaced the rest of the short tags with long ones

This commit is contained in:
Adam Zammit
2013-01-24 15:33:27 +11:00
parent ec5c6fa833
commit 28e0606088
56 changed files with 243 additions and 254 deletions

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions to calculate AAPOR outcomes based on Standard Definitions here:
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions relating to appointment times and calendars
*
@@ -495,8 +495,7 @@ function display_calendar($respondent_id, $questionnaire_id, $year = false, $mon
<th>S</th>
<th>S</th>
</tr>
<?php
<?php
while ( $Day = $Month->fetch() ) {
@@ -564,7 +563,7 @@ function display_calendar($respondent_id, $questionnaire_id, $year = false, $mon
</td>
</tr>
</table>
<?
<?php
print "<div>" . date('l j F Y',mktime(0,0,0,$month,$day,$year)) . "</div>";
}

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Client functions
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions relating to displaying for XHTML
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* FreePBX Functions
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* htpasswd/htgroup functions for authentication integration
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions relating to importing a sample file (from CSV)
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Input conversion functions
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions relating to integration with {@link http://www.limesurvey.org/ LimeSurvey}

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Operator functions for interacting with the database and getting/storing state
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions that display data about the project
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions related to the backgrounding of processes and the process table in the database
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Template of functions
*

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions to interact with Asterisk
* Some examples taken from {@link http://www.voip-info.org/wiki/index.php?page=Asterisk+manager+Example%3A+PHP voip-info.org}

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions related to XHTML code generation
*
@@ -50,8 +50,8 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head><title><? if (empty($title)) print "queXS"; else print "queXS: $title"; ?></title>
<?
<head><title><?php if (empty($title)) print "queXS"; else print "queXS: $title"; ?></title>
<?php
if ($css)
foreach ($css as $c) print "<link rel='stylesheet' href='$c' type='text/css'></link>";
if ($javascript)
@@ -67,7 +67,7 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
if (!$body) return;
?>
</head>
<?
<?php
if ($bodytext) print "<body $bodytext>"; else print "<body>";
}
@@ -83,7 +83,7 @@ function xhtml_foot()
</body>
</html>
<?
<?php
}
/**