Advertisement
nicolas-chuet

index.php

Apr 3rd, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $domain1 = new Domain();
  5. $domain2 = new Domain();
  6.  
  7. $domain1->setDomain("http://testnico.local/");
  8. $domain2->setDomain("http://wordpress.local/");
  9.  
  10. $modal1 = new Modal();
  11. $modal1->setId(1);
  12. $modal1->setText("texte de la modal ");
  13. $modal1->setTitle("Modal Title");
  14. $modal1->addUrl($domain1);
  15. $modal1->addUrl($domain2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement