rounded corners

This commit is contained in:
Roland Gruber 2013-01-12 11:26:34 +00:00
parent a4a4719355
commit 725cd7f6d4
1 changed files with 33 additions and 10 deletions

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2010 - 2011 Roland Gruber Copyright (C) 2010 - 2013 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -58,6 +58,8 @@ abstract class htmlElement {
public $rowspan = null; public $rowspan = null;
/** CSS classes */ /** CSS classes */
protected $cssClasses = array(); protected $cssClasses = array();
/** table cell CSS classes */
protected $tableCellCssClasses = array();
/** /**
* Prints the HTML code for this element. * Prints the HTML code for this element.
@ -126,7 +128,7 @@ abstract class htmlElement {
} }
/** /**
* Adds CSS classes to this link. * Adds CSS classes to this element.
* *
* @param array $classes CSS class names * @param array $classes CSS class names
*/ */
@ -134,6 +136,24 @@ abstract class htmlElement {
$this->cssClasses = $classes; $this->cssClasses = $classes;
} }
/**
* Adds CSS classes to the surrounding table cell for this element.
*
* @param array $classes CSS class names
*/
public function setTableCellCSSClasses($classes) {
$this->tableCellCssClasses = $classes;
}
/**
* Returns the CSS classes of the surrounding table cell for this element.
*
* @return array CSS classes
*/
public function getTableCellCSSClasses() {
return $this->tableCellCssClasses;
}
} }
/** /**
@ -193,11 +213,15 @@ class htmlTable extends htmlElement {
$align = $element->getAlignmentString(); $align = $element->getAlignmentString();
$colspan = $element->getColspanString(); $colspan = $element->getColspanString();
$rowspan = $element->getRowspanString(); $rowspan = $element->getRowspanString();
$css = '';
if (sizeof($element->getTableCellCSSClasses()) > 0) {
$css = 'class="' . implode(' ', $element->getTableCellCSSClasses()) . '"';
}
$tagName = 'td'; $tagName = 'td';
if ($isTableHeadElement) { if ($isTableHeadElement) {
$tagName = 'th'; $tagName = 'th';
} }
$this->elements[] = "<$tagName $align $colspan $rowspan>\n"; $this->elements[] = "<$tagName $align $colspan $rowspan $css>\n";
$this->elements[] = $element; $this->elements[] = $element;
$this->elements[] = "</$tagName>\n"; $this->elements[] = "</$tagName>\n";
if ($newLine) { if ($newLine) {
@ -422,6 +446,7 @@ class htmlInputField extends htmlElement {
* @return array List of input field names and their type (name => type) * @return array List of input field names and their type (name => type)
*/ */
function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) {
$this->cssClasses[] = 'ui-corner-all';
if (isset($values[$this->fieldName])) { if (isset($values[$this->fieldName])) {
if (isObfuscatedText($values[$this->fieldName][0])) { if (isObfuscatedText($values[$this->fieldName][0])) {
$this->fieldValue = deobfuscateText($values[$this->fieldName][0]); $this->fieldValue = deobfuscateText($values[$this->fieldName][0]);
@ -442,7 +467,7 @@ class htmlInputField extends htmlElement {
if (sizeof($validators) > 0) { if (sizeof($validators) > 0) {
$class = ' class="validate[' . implode(',', $validators) . '] ' . implode(' ', $this->cssClasses) . '"'; $class = ' class="validate[' . implode(',', $validators) . '] ' . implode(' ', $this->cssClasses) . '"';
} }
elseif (sizeof($this->cssClasses) > 0) { else {
$class = ' class="' . implode(' ', $this->cssClasses) . '"'; $class = ' class="' . implode(' ', $this->cssClasses) . '"';
} }
$name = ' name="' . $this->fieldName . '"'; $name = ' name="' . $this->fieldName . '"';
@ -985,6 +1010,7 @@ class htmlSelect extends htmlElement {
* @return array List of input field names and their type (name => type) * @return array List of input field names and their type (name => type)
*/ */
function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) {
$this->cssClasses[] = 'ui-corner-all';
if (isset($values[$this->name])) { if (isset($values[$this->name])) {
$this->selectedElements = $values[$this->name]; $this->selectedElements = $values[$this->name];
} }
@ -1000,9 +1026,7 @@ class htmlSelect extends htmlElement {
if ($this->rightToLeftTextDirection) { if ($this->rightToLeftTextDirection) {
$classList[] = 'rightToLeftText'; $classList[] = 'rightToLeftText';
} }
if (sizeof($classList) > 0) { $class = ' class="' . implode(' ', $classList) . '"';
$class = ' class="' . implode(' ', $classList) . '"';
}
$disabled = ''; $disabled = '';
if (!$this->isEnabled) { if (!$this->isEnabled) {
$disabled = ' disabled'; $disabled = ' disabled';
@ -1867,6 +1891,7 @@ class htmlInputTextarea extends htmlElement {
* @return array List of input field names and their type (name => type) * @return array List of input field names and their type (name => type)
*/ */
function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) {
$this->cssClasses[] = 'ui-corner-all';
if (isset($values[$this->name])) { if (isset($values[$this->name])) {
$this->value = implode("\r\n", $values[$this->name]); $this->value = implode("\r\n", $values[$this->name]);
} }
@ -1883,9 +1908,7 @@ class htmlInputTextarea extends htmlElement {
if ($this->richEdit) { if ($this->richEdit) {
$classList[] = 'ckeditor'; $classList[] = 'ckeditor';
} }
if (is_array($classList) && (sizeof($classList) > 0)) { $classes = ' class="' . implode(' ', $classList) . '"';
$classes = ' class="' . implode(' ', $classList) . '"';
}
echo '<textarea name="' . $this->name . '" id="' . $this->name . '"' . $tabindexValue . $classes . $colCount . $rowCount . $disabled . '>' . $this->value . '</textarea>'; echo '<textarea name="' . $this->name . '" id="' . $this->name . '"' . $tabindexValue . $classes . $colCount . $rowCount . $disabled . '>' . $this->value . '</textarea>';
return array($this->name => 'textarea'); return array($this->name => 'textarea');
} }