Advertisement
Serafim

uibutton

Aug 8th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. namespace UI;
  2.  
  3. class Button
  4. {
  5.   protected $title = 'no title';
  6.   protected $size  = [
  7.     'width'   => 200,
  8.     'height'  => 20
  9.   ];
  10.   protected $font  = [
  11.     'size'  => 11,
  12.     'color' => '#303030'
  13.   ];
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement