Lines Matching refs:properties

115             $properties = array();
116 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
191 * @param array $properties
227 $properties = array();
228 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
271 $properties = array();
272 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
329 $properties = array();
330 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
378 $properties = array();
379 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
382 self::tableOpenUseProperties($params, $properties, $maxcols, $numrows);
396 * @param array $properties
400 …public static function tableOpenUseProperties (ODTInternalParams $params, $properties, $maxcols = … argument
404 if ( !empty ($properties ['width']) ) {
405 if ( $properties ['width'] [strlen($properties ['width'])-1] != '%' ) {
409 $properties ['width'] = $params->document->toPoints($properties ['width'], 'x');
415 $style_obj = ODTTableStyle::createTableTableStyle($properties, NULL, 17);
425 * @param array $properties
427 … static function tableAddColumnUseProperties (ODTInternalParams $params, array $properties = NULL){ argument
429 $styleName = $properties ['style-name'];
434 $properties ['style-name'] = $styleNameGet;
435 $style_obj = ODTTableColumnStyle::createTableColumnStyle ($properties);
452 $properties = array();
453 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
456 self::tableHeaderOpenUseProperties($params, $properties, $colspan, $rowspan);
460 * @param null $properties
464 …public static function tableHeaderOpenUseProperties (ODTInternalParams $params, $properties = NULL… argument
466 self::tableCellOpenUsePropertiesInternal ($params, $properties, true, $colspan, $rowspan);
489 $properties = array();
490 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
493 self::tableRowOpenUseProperties($params, $properties);
497 * @param array $properties
499 public static function tableRowOpenUseProperties (ODTInternalParams $params, $properties){ argument
501 $style_obj = ODTTableRowStyle::createTableRowStyle ($properties);
530 $properties = array();
531 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
534 self::tableCellOpenUseProperties($params, $properties, $colspan, $rowspan);
540 …public static function tableCellOpenUseProperties (ODTInternalParams $params, $properties = NULL, … argument
541 self::tableCellOpenUsePropertiesInternal ($params, $properties, false, $colspan, $rowspan);
550 …nction tableCellOpenUsePropertiesInternal (ODTInternalParams $params, $properties, $inHeader = fal… argument
554 $style_obj = ODTTableCellStyle::createTableCellStyle ($properties);
568 $style_obj = ODTParagraphStyle::createParagraphStyle ($properties, $disabled);
581 self::adjustColumnStyle($params, $properties);
584 static protected function adjustColumnStyle(ODTInternalParams $params, array $properties) { argument
596 if (!empty($properties ['width'])) {
597 $width = $properties ['width'];
603 self::tableAddColumnUseProperties ($params, $properties);