'; if ($nothing != '') { $output .= '"; } } } $output .= ""; if ($return) return $output; echo $output; } /** * Prints an array of fields in a popup menu of a form based on a SQL query. * The first and second columns of the query will be used. * * The element will have an id like: "password-$value". Based on choose_from_menu() from Moodle. * * @param string $sql SQL sentence, the first field will be the identifier of the option. * The second field will be the shown value in the dropdown. * @param string $name Select form name * @param string $selected Current selected value. * @param string $script Javascript onChange code. * @param string $nothing Label when nothing is selected. * @param string $nothing_value Value when nothing is selected * @param bool $return Whether to return an output string or echo now (optional, echo by default). * @param bool $multiple Whether to allow multiple selections or not. Single by default * @param bool $sort Whether to sort the options or not. Sorted by default. * * @return string HTML code if return parameter is true. */ function print_select_from_sql ($sql, $name, $selected = '', $script = '', $nothing = '', $nothing_value = '0', $return = false, $multiple = false, $sort = true) { $fields = array (); $result = get_db_all_rows_sql ($sql); if ($result === false) $result = array (); foreach ($result as $row) { $fields[$row[0]] = $row[1]; } return print_select ($fields, $name, $selected, $script, $nothing, $nothing_value, $return, $multiple, $sort); } /** * Render an input text element. Extended version, use print_input_text() to simplify. * * @param string $name Input name. * @param string $value Input value. * @param string $id Input HTML id. * @param string $alt Alternative HTML string. * @param int $size Size of the input. * @param int $maxlength Maximum length allowed. * @param bool $disabled Disable the button (optional, button enabled by default). * @param string $script JavaScript to attach to this * @param string $attributes Attributes to add to this tag * @param bool $return Whether to return an output string or echo now (optional, echo by default). * @param bool $password Whether it is a password input or not. Not password by default. * * @return string HTML code if return parameter is true. */ function print_input_text_extended ($name, $value, $id, $alt, $size, $maxlength, $disabled, $script, $attributes, $return = false, $password = false) { static $idcounter = 0; ++$idcounter; $type = $password ? 'password' : 'text'; if (empty ($name)) { $name = 'unnamed'; } if (empty ($alt)) { $alt = 'textfield'; } if (! empty ($maxlength)) { $maxlength = ' maxlength="'.$maxlength.'" '; } $output = ''; if ($return) return $output; echo $output; } /** * Render an input hidden element. * * The element will have an id like: "hidden-$name" * * @param string $name Input name. * @param string $value Input value. * @param bool $return Whether to return an output string or echo now (optional, echo by default). * * @return string HTML code if return parameter is true. */ function print_input_hidden ($name, $value, $return = false) { $output = ''; if ($return) return $output; echo $output; } /** * Render an submit input button element. * * The element will have an id like: "submit-$name" * * @param string $label Input label. * @param string $name Input name. * @param bool $disabled Whether to disable by default or not. Enabled by default. * @param string $attributes Additional HTML attributes. * @param bool $return Whether to return an output string or echo now (optional, echo by default). * * @return string HTML code if return parameter is true. */ function print_submit_button ($label = 'OK', $name = '', $disabled = false, $attributes = '', $return = false) { $output = ''; $output .= ''; $output .= $value; $output .= ''; if ($return) return $output; echo $output; } /** * Print a nicely formatted table. Code taken from moodle. * * @param object $table is an object with several properties: * $table->head - An array of heading names. * $table->align - An array of column alignments * $table->valign - An array of column alignments * $table->size - An array of column sizes * $table->wrap - An array of "nowrap"s or nothing * $table->style - An array of personalized style for each column. * $table->rowstyle - An array of personalized style of each row. * $table->rowclass - An array of personalized classes of each row (odd-evens classes will be ignored). * $table->colspan - An array of colspans of each column. * $table->data[] - An array of arrays containing the data. * $table->width - A percentage of the page * $table->border - Border of the table. * $table->tablealign - Align the whole table * $table->cellpadding - Padding on each cell * $table->cellspacing - Spacing between cells * $table->class - CSS table class * $table->id - Table ID (useful in JavaScript) * $table->headclass[] - An array of classes for each heading * $table->title - Title of the table is a single string that will be on top of the table in the head spanning the whole table * $table->titlestyle - Title style * $table->titleclass - Title class * @param bool $return whether to return an output string or echo now * * @return string HTML code if return parameter is true. */ function print_table (&$table, $return = false) { $output = ''; static $table_count = 0; $table_count++; if (isset ($table->align)) { foreach ($table->align as $key => $aa) { if ($aa) { $align[$key] = ' text-align:'. $aa.';'; } else { $align[$key] = ''; } } } if (isset ($table->valign)) { foreach ($table->valign as $key => $aa) { if ($aa) { $valign[$key] = ' vertical-align:'. $aa.';'; } else { $valign[$key] = ''; } } } if (isset ($table->size)) { foreach ($table->size as $key => $ss) { if ($ss) { $size[$key] = ' width:'. $ss .';'; } else { $size[$key] = ''; } } } if (isset ($table->style)) { foreach ($table->style as $key => $st) { if ($st) { $style[$key] = ' '. $st .';'; } else { $style[$key] = ''; } } } if (isset ($table->rowstyle)) { foreach ($table->rowstyle as $key => $st) { $rowstyle[$key] = ' '. $st .';'; } } if (isset ($table->rowclass)) { foreach ($table->rowclass as $key => $class) { $rowclass[$key] = $class; } } if (isset ($table->colspan)) { foreach ($table->colspan as $keyrow => $cspan) { foreach ($cspan as $key => $span) { $colspan[$keyrow][$key] = ' colspan="'.$span.'"'; } } } if (empty ($table->width)) { $table->width = '80%'; } if (empty ($table->border)) { $table->border = '0px'; } if (empty ($table->tablealign)) { $table->tablealign = 'center'; } if (!isset ($table->cellpadding)) { $table->cellpadding = '4'; } if (!isset ($table->cellspacing)) { $table->cellspacing = '4'; } if (empty ($table->class)) { $table->class = 'databox'; } $tableid = empty ($table->id) ? 'table'.$table_count : $table->id; $output .= 'cellpadding.'" cellspacing="'.$table->cellspacing.'"'; $output .= ' border="'.$table->border.'" class="'.$table->class.'" id="'.$tableid.'">'; $countcols = 0; if (!empty ($table->head)) { $countcols = count ($table->head); $output .= ''; if (isset ($table->title)) { $output .= ''; } foreach ($table->head as $key => $heading) { if (!isset ($size[$key])) { $size[$key] = ''; } if (!isset ($align[$key])) { $align[$key] = ''; } if (!isset ($table->headclass[$key])) { $table->headclass[$key] = 'header c'.$key; } $output .= ''; } $output .= ''."\n"; } $output .= ''."\n"; if (!empty ($table->data)) { $oddeven = 1; foreach ($table->data as $keyrow => $row) { if (!isset ($rowstyle[$keyrow])) { $rowstyle[$keyrow] = ''; } $oddeven = $oddeven ? 0 : 1; $class = 'datos'.($oddeven ? "" : "2"); if (isset ($rowclass[$keyrow])) { $class = $rowclass[$keyrow]; } $output .= ''."\n"; /* Special separator rows */ if ($row == 'hr' and $countcols) { $output .= ''; continue; } /* It's a normal row */ foreach ($row as $key => $item) { if (!isset ($size[$key])) { $size[$key] = ''; } if (!isset ($colspan[$keyrow][$key])) { $colspan[$keyrow][$key] = ''; } if (!isset ($align[$key])) { $align[$key] = ''; } if (!isset ($valign[$key])) { $valign[$key] = ''; } if (!isset ($wrap[$key])) { $wrap[$key] = ''; } if (!isset ($style[$key])) { $style[$key] = ''; } $output .= ''."\n"; } $output .= ''."\n"; } } $output .= '
titlestyle)) { $output .= ' style="'.$table->titlestyle.'"'; } if (isset ($table->titleclass)) { $output .= ' class="'.$table->titleclass.'"'; } $output .= '>'.$table->title.'
'. $heading .'
'. $item .'
'."\n"; if ($return) return $output; echo $output; } /** * Render a radio button input. Extended version, use print_radio_button() to simplify. * * @param string $name Input name. * @param string $value Input value. * @param string $checked Set the button to be marked (optional, unmarked by default). * @param bool $disabled Disable the button (optional, button enabled by default). * @param string $script Script to execute when onClick event is triggered (optional). * @param string $attributes Optional HTML attributes. It's a free string which will be inserted into the HTML tag, use it carefully (optional). * @param bool $return Whether to return an output string or echo now (optional, echo by default). * * @return string HTML code if return parameter is true. */ function print_radio_button_extended ($name, $value, $label, $checkedvalue, $disabled, $script, $attributes, $return = false) { static $idcounter = 0; $output = ''; $output = ''. $label .'' . "\n"; } if ($return) return $output; echo $output; } /** * Render a radio button input. * * @param string $name Input name. * @param string $value Input value. * @param string $label Label to add after the radio button (optional). * @param string $checkedvalue Checked and selected value, the button will be selected if it matches $value (optional). * @param bool $return Whether to return an output string or echo now (optional, echo by default). * * @return string HTML code if return parameter is true. */ function print_radio_button ($name, $value, $label = '', $checkedvalue = '', $return = false) { $output = print_radio_button_extended ($name, $value, $label, $checkedvalue, false, '', '', true); if ($return) return $output; echo $output; } /** * Render a checkbox button input. Extended version, use print_checkbox() to simplify. * * @param string $name Input name. * @param string $value Input value. * @param string $checked Set the button to be marked (optional, unmarked by default). * @param bool $disabled Disable the button (optional, button enabled by default). * @param string $script Script to execute when onClick event is triggered (optional). * @param string $attributes Optional HTML attributes. It's a free string which will be inserted into the HTML tag, use it carefully (optional). * @param bool $return Whether to return an output string or echo now (optional, echo by default). * * @return string HTML code if return parameter is true. */ function print_checkbox_extended ($name, $value, $checked, $disabled, $script, $attributes, $return = false) { $output = ''; if ($return) return $output; echo $output; } /** * Prints an image HTML element. * * @param string $src Image source filename. * @param bool $return Whether to return or print * @param array $options Array with optional HTML options to set. At this moment, the * following options are supported: alt, style, title, width, height, class. * * @return string HTML code if return parameter is true. */ function print_image ($src, $return = false, $options = false) { $output = '