1 |
<?php
|
2 |
//$Header: /hl/cvsroots/gpl01/gpl01/webprojs/fboprime/sw/phplib/htmlformatx.inc,v 1.1 2006/10/22 02:03:45 dashley Exp $
|
3 |
//********************************************************************************
|
4 |
//htmlformatx.inc--FboPrime HTML Formatting Functions Not Used for Dayview
|
5 |
// Scheduler Page
|
6 |
//Copyright (C) 2006 David T. Ashley
|
7 |
//
|
8 |
//This program is free software; you can redistribute it and/or
|
9 |
//modify it under the terms of the GNU General Public License
|
10 |
//as published by the Free Software Foundation; either version 2
|
11 |
//of the License, or (at your option) any later version.
|
12 |
//
|
13 |
//This program is distributed in the hope that it will be useful,
|
14 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16 |
//GNU General Public License for more details.
|
17 |
//
|
18 |
//You should have received a copy of the GNU General Public License
|
19 |
//along with this program; if not, write to the Free Software
|
20 |
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
21 |
//********************************************************************************
|
22 |
//This file contains functions that assist in formatting HTML. Please also see
|
23 |
//htmlformat.inc.
|
24 |
//--------------------------------------------------------------------------------
|
25 |
require_once("htmlformat.inc");
|
26 |
//--------------------------------------------------------------------------------
|
27 |
//Outputs the number of " " tokens specified.
|
28 |
//
|
29 |
function HTMLFORMAT_nbsp_output($count)
|
30 |
{
|
31 |
$s = "";
|
32 |
|
33 |
for ($i=0; $i<$count; $i++)
|
34 |
{
|
35 |
$s .= " ";
|
36 |
}
|
37 |
|
38 |
HTMLFORMAT_echo_noop_nl($s);
|
39 |
}
|
40 |
//--------------------------------------------------------------------------------
|
41 |
//End of $RCSfile: htmlformatx.inc,v $.
|
42 |
//--------------------------------------------------------------------------------
|
43 |
?>
|