Guest User

PHP Factory Patter

a guest
Jan 24th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. // gets data
  3. class factory {
  4.    
  5.     function get_data() {
  6.        
  7.     }
  8.  
  9.     $widget = new widget_class();
  10.     $page = new page_class();      
  11.    
  12. }
  13.  
  14. // creates a widget that uses the data
  15. class widget_class {
  16.  
  17. }
  18.  
  19. // some other widget that uses the data
  20. class page_class {
  21.  
  22. }
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment