Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2015
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class foo_bar {
  2.  
  3. function __construct () {
  4. // stuff
  5. }
  6.  
  7. function snah_bo () {
  8.  
  9. apply_filters('a_filter', &$this->bar_property) ;
  10.  
  11.  
  12. }
  13.  
  14. new foo_bar();
  15.  
  16. add_filter ('non_class_function');
  17.  
  18. non_class_function ($obj_property) {
  19.  
  20. $obj_property = array ('foo', 'poo');
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement