]>
src.bluestatic.org Git - isso.git/blob - printer.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
32 * This framework generates standard HTML through various functions. The purpose
33 * is generally so that things like the admin system can be created without templates.
35 * @author Iris Studios, Inc.
36 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
44 * Framework registry object
52 function Printer (& $registry )
54 $this- > registry
=& $registry ;
58 * Creates a redirect to another page; constructs the header and footer (therefore execution stops)
60 * @param string Location to redirect to
61 * @param integer Time to wait before the redirect
63 function redirect ( $location , $timeout = 10 )
65 $timeout = $timeout * 200 ;
69 <script type="text/javascript">
71 var timeout = $timeout ;
75 setTimeout("redirect()", $timeout );
84 window.location = " $location" ;
90 $this- > page_start ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'Redirect' ), ':default:' , 15 , $js );
92 $this- > page_message ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'Redirect' ), sprintf ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'Please wait to be redirected. If you are not redirected in a few seconds, click <a href="%1 $s" >here</a>.' ), $location ));
98 * Throws a fatal error; constructs the header and footer
100 * @param string Error messsage text
102 function error ( $message )
104 $this- > page_start ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'Error' ));
105 $this- > page_message ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'Error' ), $message );
111 // ###################################################################
113 * Outputs the header of the page: doctype, <html>, <head>, <title>, <body>
114 * and imbeds the style information
116 * @param string Title of the page
117 * @param string Class of the page to be applied to the body
118 * @param integer Margin of the <div> that all content is placed in
119 * @param string Extra HTML to imbed in the <head> tag
120 * @param string <body> onLoad action to imbed
121 * @param integer Margin of the actual <body > tag
122 * @param string Relative path where the CSS data is stored
123 * @param bool Will force re-print the header if it has already been printed
125 function page_start ( $actiontitle , $pageclass = ':default:' , $pagemargin = 15 , $extra = '' , $onload = false , $margin = 0 , $dotpath = '.' , $override = false )
127 if ( constant ( 'DONE_HEADER' ) AND ! $override )
132 $title = sprintf ( $this- > registry
-> modules
[ 'localize' ]-> string ( 'BugStrike - Administration - %1 $s' ), $actiontitle );
134 echo "<!DOCTYPE html PUBLIC \" -//W3C//DTD XHTML 1.0 Transitional//EN \" \" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd \" > \n ";
135 echo "<html xmlns= \" http://www.w3.org/1999/xhtml \" > \n <head>";
136 echo " \n\t <title> $title </title>";
137 echo " \n\t <meta http-equiv= \" Content-Type \" content= \" text/html; charset=iso-8859-1 \" />";
138 echo " \n\t <link rel= \" stylesheet \" href= \" $dotpath /admin.css \" />" . (( $extra ) ? " \n $extra" : ' ');
139 echo " \n </head> \n <body style= \" margin: {$margin} px; \" " . (( $pageclass !== ' : default : ') ? " class= \" $pageclass\" " : ' ') . (( $onload ) ? " onload= \" $onload\" " : ' ') . "> \n ";
141 if (!defined(' HIDE_SETUP
') AND $this- >registry->userinfo[' adminsession
'])
145 $location = parse_url( $_SERVER [' SCRIPT_URL
']);
146 $location [' path
'] = preg_quote(end(explode(' / ', $location [' path
'])));
147 $location [' path
'] = ((! $location [' path
']) ? ' index
. php
' : $location [' path
']);
149 echo "<div class= \" tcat \" style= \" padding: 5px; border-bottom: 4px outset \" > \n ";
150 echo " \n\t <form action= \" jump.php \" method= \" post \" title= \" navigation \" style= \" display: inline \" >";
151 echo " \n\t <span style= \" float: right \" ><a href= \" ../ \" >" . $this- >registry->modules[' localize
']->string(' Tracker Home
') . "</a></span>";
152 echo " \n\t\t " . $this- >registry->modules[' localize
']->string(' Navigation
') . ": <select name= \" jumplocation \" onchange= \" this.form.submit() \" >";
153 foreach ( $globalnav AS $grouptitle => $links )
155 echo " \n\t\t <optgroup label= \" $grouptitle\" >";
156 foreach ( $links AS $title => $url )
158 $selected = ((preg_match("# $location [path]$#i", $url )) ? ' selected
= "selected" ' : ' ');
159 echo " \n\t\t\t <option value= \" $url\" $selected > $title </option>";
161 echo " \n\t\t </optgroup>";
163 echo " \n\t\t </select>";
164 echo " \n\t\t <input type= \" submit \" name= \" go \" value= \" " . $this- >registry->modules[' localize
']->string(' Go
') . " \" />";
169 echo "<div style= \" margin: {$pagemargin} px; \" > \n <!-- / page head --> \n\n ";
171 if (!defined(' DONE_HEADER
'))
173 define(' DONE_HEADER
', 1);
178 * Places raw HTML code directly into the documet at the current position
180 * @param string HTML code
182 function page_code( $code )
184 echo " \n\n $code\n\n ";
188 * A block function that produces a table with a message in it. This does not print the header and footer
190 * @param string The title of the message (appears at the top of the block)
191 * @param string Content of the message
193 function page_message( $title , $message )
195 $this- >table_start(true, ' 75 %
');
196 $this- >table_head( $title , 1);
197 $this- >row_span("<blockquote> $message </blockquote>", ' : swap
: ', ' left
', 1);
202 * Produces an entire page layout that asks the user whether or not they want to perform X action and provides
203 * a link to the YES action
205 * @param string Message that asks if they want to do X
206 * @param string Location to go for YES
208 function page_confirm( $message , $location )
210 $this- >page_start( $this- >registry->modules[' localize
']->string(' Confirm
'));
212 $this- >page_message( $this- >registry->modules[' localize
']->string(' Confirm
'), $message . ' < p
>< input type
= "button" name
= "confirm" value
= " ' . $this- >registry->modules['localize']->string('Yes') . ' " onclick
= "window.location = \' ' . $location . ' \' ;" /> ');
218 * Closes the HTML document structure an adds the copyright; this also stops execution of the page
222 $copyright = " \n <br /> \n <p align= \" center \" class= \" copyright \" > \n\t <a href= \" http://www.iris-studios.com \" target= \" _blank \" >BugStrike " . $this- >registry->options[' trackerversion
'] . ", © 2002 - " . date(' Y
') . " Iris Studios, Inc.</a> \n </p>";
224 if (!defined(' HIDE_SETUP
'))
226 echo " \n <!-- page end --> \n </div> \n $copyright" ;
230 echo " \n <!-- page end --> \n </div>";
233 echo " \n\n </body> \n </html>";
238 // ###################################################################
240 * Opens a <table> tag with styling
242 * @param bool Whether to add a <br /> before the table
243 * @param string Value of the width attribute
245 function table_start( $break = true, $width = ' 90 %
')
252 echo " \n <table cellpadding= \" 4 \" cellspacing= \" 0 \" border= \" 0 \" align= \" center \" width= \" $width\" class= \" tborder \" > \n ";
256 * Adds a table row that is sued to head the entire table
258 * @param string Title string
259 * @param integer Colspan attribute value
260 * @param bool Whether to bold the title
262 function table_head( $title , $colspan = 2, $strong = true)
264 echo "<tr> \n\t <td class= \" tcat \" align= \" center \" colspan= \" $colspan\" >" . (( $strong ) ? "<strong> $title </strong>" : $title ) . "</td> \n </tr> \n ";
268 * Creates column headings; useful for a grid-style page. This uses a different styling than table_head()
269 * and is usually used directly after a table header
271 * @param array Array of titles to print
273 function table_column_head( $columnarray )
275 if (is_array( $columnarray ))
277 $render = "<tr valign= \" top \" align= \" center \" > \n ";
279 foreach ( $columnarray AS $header )
281 $render .= " \t <td class= \" thead \" align= \" center \" > $header </td> \n ";
284 $render .= "</tr> \n ";
291 * Closes a <table> tag
298 // ###################################################################
300 * Starts a <form> tag and adds the DO hidden input field
302 * @param string Action/name of the file to action to
303 * @param string Value of the DO parameter; used to do-branch
304 * @param bool Enctype attribute; used for mime/multi-part
305 * @param string Name of the form; this only matters for DOM access
306 * @param string Method to action as; POST or GET (default is POST)
308 function form_start( $action , $do , $enctype = false, $name = ' inputform
', $submitmethod = ' post
')
310 echo " \n <!-- input form --> \n <form name= \" $name\" action= \" $action\" " . (( $enctype ) ? " enctype= \" $enctype\" " : ' ') . " method= \" $submitmethod\" > \n ";
311 $this- >form_hidden_field(' do ', $do );
315 * Adds a hidden field at the current location
317 * @param string Name of the field
318 * @param string Value of the field
320 function form_hidden_field( $name , $value )
322 echo "<input type= \" hidden \" name= \" $name\" value= \" $value\" /> \n ";
326 * Closes a <form> tag
330 echo "</form> \n <!-- / input form --> \n ";
333 // ###################################################################
335 * Creates a table row that spans an entire row; this is used to divide sections, usually
337 * @param string Text to place in the row
338 * @param string Class name to style with; by default it alternates between alt1 and alt2 (use :swap: to do that)
339 * @param string Alignment of the text in the row
340 * @param integer Colspan attribute
342 function row_span( $text , $class = ' : swap
: ', $align = ' left
', $colspan = 2)
344 if ( $class === ' : swap
: ')
346 $this- >registry->modules[' functions
']->exec_swap_bg();
347 $row_class = $this- >registry->modules[' functions
']->bgcolour;
348 $is_style_element = false;
352 if (preg_match(' #:style:(.*?)#i', $class))
354 $is_style_element = true ;
355 $style = str_replace ( ':style:' , '' , $class );
360 $is_style_element = false ;
364 echo "<tr> \n\t <td " . (( $is_style_element ) ? "style= \" $style\" " : "class= \" $row_class\" " ) . " colspan= \" $colspan\" align= \" $align\" > $text </td> \n </tr>" ;
368 * Creates a table row that has more than two columns; this is used in conjunction with table_column_head()
369 * usually; it takes an array of values
371 * @param array Array of values in form value => alignment key (c for center, l for left, and r for right)
373 function row_multi_item ( $row_array )
375 $this- > registry
-> modules
[ 'functions' ]-> exec_swap_bg ();
377 foreach ( $row_array AS $item => $align )
379 $row_data [ " $align" ][] = $item ;
382 echo " < tr valign
=\" top\"
> ";
384 foreach ( $row_data AS $align_key => $item_array )
386 if ( $align_key == 'c')
390 else if ( $align_key == 'l')
394 else if ( $align_key == 'r')
399 foreach ( $item_array AS $value )
401 echo " \n\t
< td
class =\"{ $this
-> registry
-> modules
[ 'functions' ]-> bgcolour
}\" align
=\" $align\" > $value </ td
> ";
409 * Generic row creation function that has two columns: label and value; this is used for many
410 * other form functions, but can also be used for non-editable fields
412 * @param string Label text
413 * @param string HTML or text to place in the value column
414 * @param string Vertical align (valign attribute) for the row
415 * @param integer Colspan attribute
416 * @param string Class to style the row with; default is to alternate
418 function row_text( $label , $value = ' ', $valign = 'top', $colspan = 2, $class = -1)
426 $this- >registry->modules['functions']->exec_swap_bg();
427 $row_class = $this- >registry->modules['functions']->bgcolour;
439 echo " < tr valign
=\" $valign\" > ";
440 echo " \n\t
< td
class =\" $row_class\" > $label </ td
> ";
441 echo " \n\t
< td
class =\" $row_class\" > $value </ td
> ";
445 echo " \n\t
< td
class =\" $row_class\" colspan
=\" " . $colspan - 2 . " \"
>& nbsp
;</ td
> ";
452 * Creates a table row with an <input> text field as the value column
454 * @param string Label text
455 * @param string Name of the <input> field
456 * @param string Value of the field
457 * @param integer Colspan attribute
458 * @param integer Size of the <input> field
459 * @param integer Length attribute; use FALSE for no length to be specified
460 * @param bool Whether to make this a password field
461 * @param string Vertical align (valign attribute)
463 function row_input( $label , $name , $value = '', $colspan = 2, $size = 35, $length = false, $password = false, $lalign = 'top')
465 $this- >row_text( $label , " < input type
=\" " . (( $password ) ? 'password' : 'text') . " \"
class =\" input\" name
=\" $name\" value
=\" $value\" size
=\" $size\" " . (( $length ) ? " maxlength
=\" $length\" " : '') . " /> ", $lalign , $colspan );
469 * Creates a table row with a <textarea> as the value column
471 * @param string Label text
472 * @param string Name of the <textarea>
473 * @param string Value of the <textarea>
474 * @param integer Colspan attribute
475 * @param integer Number of rows in the <textarea>
476 * @param integer Number of colums in the <textarea>
477 * @param bool Whether or not to use monospacing font
478 * @param string Extra style attributes to apply to the <textarea>
480 function row_textarea( $label , $name , $value = '', $colspan = 2, $rows = 7, $cols = 50, $code = false, $style = '')
482 $this- >row_text( $label , " < textarea name
=\" $name\" class =\" " . (( $code ) ? 'code' : 'input') . " \" rows
=\" $rows\" cols
=\" $cols\" " . (( $style ) ? ' style=" ' . $style . ' "' : '') . " > $value </ textarea
> ", 'top', $colspan );
486 * Creates a table row with the tfoot class
488 * @param string Extra text or HTML to insert into the row
489 * @param integer Colspan attribute
491 function row_tfoot( $data , $colspan = 2)
493 echo $this- >row_span( $data , 'tfoot', 'center');
497 * Creates a tfoot table row with submit buttons
499 * @param string Extra HTML to imbed in the row after the buttons
500 * @param string Submit button text (by default it uses pre-translated " Submit
" from :save:)
501 * @param string Reset button text (default it uses pre-translated " Reset
" from :reset:)
502 * @param integer Colspan attribute
504 function row_submit( $extra = false, $submit = ':save:', $reset = ':reset:', $colspan = 2)
506 if ( $submit === ':save:')
508 $submit = " " . $this- >registry->modules['localize']->string('Submit') . " ";
512 $submit = " $submit ";
515 if ( $reset === ':reset:')
517 $reset = " " . $this- >registry->modules['localize']->string('Reset') . " ";
521 $reset = (( $reset ) ? " $reset " : '');
524 $output = " \n\t\t
< input type
=\" submit\"
class =\" button\" value
=\" $submit\" accesskey
=\" s\"
/> ";
525 $output .= (( $reset ) ? " \n\t\t
< input type
=\" reset\"
class =\" button\" value
=\" $reset\" accesskey
=\" r\"
/> $extra\n\t " : '');
526 $this- >row_tfoot( $output );
530 * Creates an upload row; you need to specify some other paramaters in form_start() for this to work
532 * @param string Label text
533 * @param string Upload name
534 * @param integer Colspan attribute
536 function row_upload( $label , $name , $colspan = 2)
538 $this- >row_text( $label , " < input type
=\" file\"
class =\" button\" name
=\" $name\" size
=\" 35\" /> ", 'top', $colspan );
542 * Adds a name-value pair to an array that is constructed into a <select> list
544 * @param string Text displayed for the option
545 * @param string Value of the option
546 * @param bool Whether or not to select this particluar option
548 function list_item( $name , $value , $selected = false)
552 $listitem [] = " \n\t
< option value
=\" $value\" " . (( $selected == true) ? ' selected=" selected
"' : '') . " > $name </ option
> ";
556 * Assembles a <select> table row from list_item() items
558 * @param string Label text
559 * @param string Name of the <select>
560 * @param bool Automatically submit the form on a change?
561 * @param integer Colspan attribute
563 function row_list( $label , $name , $is_jump = false, $colspan = 2)
567 foreach ( $listitem AS $option )
569 $optionlist .= $option ;
574 $this- >row_text( $label , " \n
< select
class =\" button\" name
=\" $name\" " . (( $is_jump ) ? " onchange
=\" this
. form
. submit ();\" " : '') . " > $optionlist\n </ select
> " . (( $is_jump ) ? " \n
< input type
=\" submit\"
class =\" button\" value
=\" " . $this- >registry->modules['localize']->string('Go') . " \" accesskey
=\" g\"
/> " : '') . " \n
", $colspan );
578 * Creates a row with two radio buttons: yes and now
580 * @param string Label text
581 * @param string Name of the BOOL flag
582 * @param bool TRUE to select the YES by default; FALSE for NO
583 * @param integer Colspan attribute
585 function row_yesno( $label , $name , $value , $colspan = 2)
587 $this- >row_text( $label , " < input type
=\" radio\" name
=\" $name\" value
=\" 1\" " . (( $value ) ? ' checked=" checked
"' : '') . " /> " . $this- >registry->modules['localize']->string('Yes') . " < input type
=\" radio\" name
=\" $name\" value
=\" 0\" " . ((! $value ) ? ' checked=" checked
"' : '') . " /> " . $this- >registry->modules['localize']->string('No'), $colspan );
591 /*=====================================================================*\
592 || ###################################################################
595 || ###################################################################
596 \*=====================================================================*/