/**
  * main()
  * the function that will execute the sequence that will fill the entire databank.
  * Runs:
  * 			Wikipictures
  * 			Wikilinks
  * 			WikiSnippet
  * 			WikiSummary
  * 			FacebookSummary
  * Current RunTime: Log here.......
  */
 public function main()
 {
     $this->setCollegeList();
     $formatted = $this->getCollegeList();
     for ($i = 0; $i < count($formatted); $i++) {
         $wiki = new wikipediaController($this->_relation, $formatted[$i]);
         $fb = new fbController($this->_relation, $formatted[$i]);
         $wiki->wikiPictures();
         $wiki->wikiLinks();
         $wiki->wikiSnippet();
         $wiki->wikiSummary();
         $fb->getFBSummary();
     }
 }
 public function __construct($relationalDBConnection, $college)
 {
     parent::__construct($relationalDBConnection, $college);
     $this->_facebook = new Facebook(array('appId' => "166319723434460", 'secret' => "8a3528c5a80f960dda2acb52127136ab"));
     $this->_baseURL = "http://graph.facebook.com";
 }