Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. return array(
  2. 'name' => $this->display_name,
  3. 'url' => $this->url,
  4. 'image' => $this->avatar,
  5. 'text' => $this->about,
  6. 'data' => $this->get_popover_text()
  7. );
  8.  
  9. // which gives
  10.  
  11. array(5) {
  12. ["name"]=>
  13. string(13) "Aaron Harding"
  14. ["url"]=>
  15. string(41) "http://devisionarissen.dev/blog/authors/1"
  16. ["image"]=>
  17. string(33) "/assets/images/1422782841473s.jpg"
  18. ["text"]=>
  19. string(57) "Lorem ipsum dolor sit amet, consectetur adipisicing elit."
  20. ["data"]=>
  21. array(2) {
  22. [0]=>
  23. array(1) {
  24. ["title"]=>
  25. string(90) "<a href="http://devisionarissen.dev/blog/2015/10/08/2nd-example-post">2nd example post</a>"
  26. }
  27. [1]=>
  28. array(1) {
  29. ["title"]=>
  30. string(75) "<a href="http://devisionarissen.dev/blog/2015/10/07/hello">Hello world!</a>"
  31. }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement