Guest User

Untitled

a guest
Jun 22nd, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * ISPKeywords
  5. *
  6. * @author jcrawford@namespaceinc.com
  7. * @version 1.0
  8. */
  9.  
  10. class ISPKeywords extends Zend_Db_Table_Abstract {
  11. /**
  12. * The default table name
  13. */
  14. protected $_name = 'isp_keywords';
  15.  
  16. }
  17.  
  18. class ISPKeyword extends Zend_Db_Table_Row_Abstract
  19. {
  20. public function keyword()
  21. {
  22. return $this->keyword;
  23. }
  24.  
  25. public function start_date()
  26. {
  27. return $this->start_date;
  28. }
  29.  
  30. public function end_date()
  31. {
  32. return $this->end_date;
  33. }
  34. }
Add Comment
Please, Sign In to add comment