ofc_line_style.php 142 B

1234567891011
  1. <?php
  2. class line_style
  3. {
  4. function line_style($on, $off)
  5. {
  6. $this->style = "dash";
  7. $this->on = $on;
  8. $this->off = $off;
  9. }
  10. }