Guest User

Untitled

a guest
May 20th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. require_once PHOTON . '/ExtBind.php';
  4.  
  5. class AdminEduService
  6. extends ExtBind
  7. implements ControllerInterface {
  8.  
  9. public function init() {
  10. $this->bind( new Edu() );
  11. }
  12.  
  13. public function search() {
  14. $c = new Criteria;
  15. $c->add( EduPeer::PRACTICEID, null, Criteria::ISNULL );
  16. $this->query( $c );
  17. }
  18.  
  19. }
  20. PhotonApp::run( new AdminEduService() );
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment