Lines Matching refs:params

18 …public static function spanOpen(ODTInternalParams $params, $styleName, $element=NULL, $attributes=…  argument
22 if (!isset($params->elementObj)) {
24 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
28 $params->document->state->enter($span);
29 $params->content .= $span->getOpeningTag();
52 … public static function spanOpenUseCSS(ODTInternalParams $params, $element=NULL, $attributes=NULL){ argument
54 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
55 $params->elementObj = $params->htmlStack->getCurrentElement();
57 self::spanOpenUseProperties($params, $properties);
75 public static function spanOpenUseProperties(ODTInternalParams $params, $properties){ argument
87 …ame="'.$style_name.'" style:family="graphic" style:parent-style-name="'.$params->document->getStyl…
92 $params->document->addAutomaticStyle($style_obj);
93 ODTImage::addImage ($params, $picture, NULL, NULL, NULL, NULL, $style_name);
99 $params->document->addAutomaticStyle($style_obj);
103 self::spanOpen($params, $style_name);
111 public static function spanClose(ODTInternalParams $params) { argument
112 ODTUtility::closeHTMLElement ($params, $params->document->state->getHTMLElement());
113 $params->document->closeCurrentElement($params->content);
116 public static function createSpanInternal (ODTInternalParams $params, $attributes) { argument
119 ODTUtility::getHTMLElementProperties ($params, $properties, 'span', $attributes);
123 $params->document->createTextStyle($properties, false);
129 public static function generateSpansfromHTMLCode(ODTInternalParams $params, $HTMLCode){ argument
198 $checked [$out] = $params->document->replaceXMLEntities($found ['content']);
217 $style_name = self::createSpanInternal ($params, $found ['attributes']);
228 $checked [$out] = $params->document->replaceXMLEntities($found ['tag-orig']);
233 $checked [$out] = $params->document->replaceXMLEntities($found ['tag-orig']);
239 $params->content .= $checked [$index];