Lines Matching refs:style

218         $style = new ODTPageLayoutStyle();
223 … $style->importODTStyleInternal(self::$page_layout_fields, $open, $style->page_layout_style);
229 $style->content_header = XMLUtil::getElement ('style:header-style', $childs);
230 $style->content_footer = XMLUtil::getElement ('style:footer-style', $childs);
232 … $style->importODTStyleInternal(self::$layout_props_fields, $open, $style->layout_props);
239 … $style->importODTStyleInternal(self::$bgi_fields, $open, $style->bgi_props);
240 … $style->content_bgi = XMLUtil::getElementContent ('style:background-image', $childs);
246 … $style->importODTStyleInternal(self::$columns_fields, $open, $style->columns_props);
247 … $style->content_columns = XMLUtil::getElementContent ('style:columns', $childs);
253 … $style->importODTStyleInternal(self::$footnote_fields, $open, $style->footnote_props);
260 return $style;
301 $style = '<style:page-layout '.$layout_style.">\n";
304 $style .= '<style:page-layout-properties '.$layout.">\n";
307 $style .= '<style:background-image '.$bgi.">\n";
308 $style .= $this->content_bgi;
309 $style .= '</style:background-image>'."\n";
312 $style .= '<style:columns '.$columns.">\n";
313 $style .= $this->content_columns;
314 $style .= '</style:columns>'."\n";
317 $style .= '<style:footnote-sep '.$footnote."/>\n";
320 $style .= '</style:page-layout-properties>'."\n";
323 $style .= $this->content_header;
324 $style .= $this->content_footer;
326 $style .= '</style:page-layout'.">\n";
327 return $style;
353 $style = '<style:page-layout style:name="'.$style_name.'">
360 return self::importODTStyle($style);