Spaces:
Sleeping
Sleeping
File size: 893 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?php
require_once(HTML2PS_DIR.'box.generic.formatted.php');
class SimpleInlineBox extends GenericBox {
function SimpleInlineBox() {
$this->GenericBox();
}
function readCSS(&$state) {
parent::readCSS($state);
$this->_readCSS($state,
array(CSS_TEXT_DECORATION,
CSS_TEXT_TRANSFORM));
// '-html2ps-link-target'
global $g_config;
if ($g_config["renderlinks"]) {
$this->_readCSS($state,
array(CSS_HTML2PS_LINK_TARGET));
};
}
function get_extra_left() {
return 0;
}
function get_extra_top() {
return 0;
}
function get_extra_right() {
return 0;
}
function get_extra_bottom() {
return 0;
}
function show(&$driver) {
parent::show($driver);
$strategy =& new StrategyLinkRenderingNormal();
$strategy->apply($this, $driver);
}
}
?> |