Esempio n. 1
0
 /**
  * Build the menu.
  *  Additional options that have been set are added to the menu.
  */
 function menu()
 {
     $menubox = new Box("Menu");
     $menubox->setIcon("menu-item.gif");
     foreach ($this->menuOptions as $options) {
         if (isset($options[2])) {
             $menubox->addOption($options[0], $options[1], $options[2]);
         } else {
             $menubox->addOption($options[0], $options[1]);
         }
     }
     return $menubox->generate();
 }
Esempio n. 2
0
 /**
  * Returns HTML for the map where this kill took place
  *
  * @return string HTML for the map where this kill took place
  */
 function map()
 {
     //Admin is able to see classsified systems
     if (!$this->kill->isClassified() || $this->page->isAdmin()) {
         $mapbox = new Box("Map");
         if (IS_IGB) {
             $mapbox->addOption("img", imageURL::getURL('map', $this->kill->getSystem()->getID(), 145), "javascript:CCPEVE.showInfo(3, " . $this->kill->getSystem()->getRegionID() . ")");
             $mapbox->addOption("img", imageURL::getURL('region', $this->kill->getSystem()->getID(), 145), "javascript:CCPEVE.showInfo(4, " . $this->kill->getSystem()->getConstellationID() . ")");
             $mapbox->addOption("img", imageURL::getURL('cons', $this->kill->getSystem()->getID(), 145), "javascript:CCPEVE.showInfo(5, " . $this->kill->getSystem()->getExternalID() . ")");
         } else {
             $mapbox->addOption("img", imageURL::getURL('map', $this->kill->getSystem()->getID(), 145));
             $mapbox->addOption("img", imageURL::getURL('region', $this->kill->getSystem()->getID(), 145));
             $mapbox->addOption("img", imageURL::getURL('cons', $this->kill->getSystem()->getID(), 145));
         }
         return $mapbox->generate();
     }
     return '';
 }
Esempio n. 3
0
 function points()
 {
     $html = '';
     if (config::get('kill_points') && !empty($this->points)) {
         $scorebox = new Box("Kill points");
         $scorebox->addOption("points", $this->points);
         $html .= $scorebox->generate();
     }
     if (config::get('loss_points') && !empty($this->lpoints)) {
         $scorebox = new Box("Loss points");
         $scorebox->addOption("points", $this->lpoints);
         $html .= $scorebox->generate();
     }
     if (config::get('total_points') && !empty($this->lpoints)) {
         $scorebox = new Box("Total points");
         $scorebox->addOption("points", $this->points - $this->lpoints);
         $html .= $scorebox->generate();
     }
     return $html;
 }
Esempio n. 4
0
 /**
  * Generate admin menu.
  * 
  * @return string HTML for a menu of admin links.
  */
 public static function genAdminMenu()
 {
     // sort the menu alphabetically
     ksort(self::$data);
     // create a standardbox to print all links into
     $menubox = new Box('Options');
     $menubox->setIcon('menu-item.gif');
     foreach (self::$data as $field => $subfields) {
         $menubox->addOption('caption', $field);
         foreach ($subfields as $subfield => $array) {
             // if this subfield has no options then it is a category
             if (!is_array($array)) {
                 $menubox->addOption('link', $subfield, $array);
                 continue;
             }
             // we're not a category, make it clickable
             $menubox->addOption('link', $subfield, edkURI::build(array(array('a', 'admin', true), array('field', urlencode($field), true), array('sub', urlencode($subfield), true))));
         }
         $lastfield = $field;
     }
     return $menubox->generate();
 }