adventuregamers.com.php 661 B

1234567891011121314151617181920212223
  1. <?php
  2. return array(
  3. 'grabber' => array(
  4. '%^/news.*%' => array(
  5. 'test_url' => 'http://www.adventuregamers.com/news/view/31079',
  6. 'body' => array(
  7. '//div[@class="bodytext"]',
  8. )
  9. ),
  10. '%^/videos.*%' => array(
  11. 'test_url' => 'http://www.adventuregamers.com/videos/view/31056',
  12. 'body' => array(
  13. '//iframe',
  14. )
  15. ),
  16. '%^/articles.*%' => array(
  17. 'test_url' => 'http://www.adventuregamers.com/articles/view/31049',
  18. 'body' => array(
  19. '//div[@class="cleft"]',
  20. )
  21. )
  22. ),
  23. );