Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
require_once(HTML2PS_DIR.'value.generic.php');
4
 
5
class BorderStyle extends CSSValue {
6
  var $left;
7
  var $right;
8
  var $top;
9
  var $bottom;
10
 
11
  function &copy() {
12
    $value =& new BorderStyle($this->top, $this->right, $this->bottom, $this->left);
13
    return $value;
14
  }
15
 
16
  function BorderStyle($top, $right, $bottom, $left) {
17
    $this->left   = $left;
18
    $this->right  = $right;
19
    $this->top    = $top;
20
    $this->bottom = $bottom;
21
  }
22
}
23
 
24
?>