Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php namespace Craft;
  2.  
  3. class MypluginVariable
  4. {
  5. // return the result directly
  6. public function exampleVariable()
  7. {
  8. return 'Anything you want!';
  9. }
  10. // call a service method and return the result
  11. public function exampleServiceMethodWrapper($value)
  12. {
  13. return craft()->myPlugin->myServiceMethod($value);
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement