public function FRGraphYourself($graph)
 {
     if ($this->isLast) {
         if ($this->recette != null) {
             $graph->addNode($this->recette, array('URL' => 'http://smw.learning-socle.org/index.php/' . $this->recette, 'shape' => 'box', 'color' => Color::colorNode('recipe')));
             $graph->addEdge(array($this->title => $this->recette), array('label' => "A comme recette", 'color' => Color::colorEdge('recipe')));
         }
     } else {
         foreach ($this->sons as $value) {
             $graph->addNode($value->getTitle(), array('shape' => 'box', 'color' => Color::colorNode('funcreq')));
             $graph->addEdge(array($this->title => $value->getTitle()), array('label' => "Se décompose en", 'color' => Color::colorEdge('funcreq')));
             $graph = $value->FRGraphYourself($graph);
         }
     }
     return $graph;
 }
Пример #2
0
 public function graphRecipe($graph)
 {
     $urlRecipe = '';
     if ($this->recipe != null) {
         $title = $this->recipe->getTitle();
         if ($this->recipe->exists()) {
             $urlRecipe = $this->recipe->getUrl();
         } else {
             $urlRecipe = $this->recipe->getUrl();
             $urlRecipe = str_replace("index.php/", "index.php/Spécial:AjouterDonnées/Recette/", $urlRecipe);
         }
         $graph->addNode($title, array('URL' => $urlRecipe, 'shape' => 'box', 'color' => Color::colorNode('recipe')));
         $graph->addEdge(array($this->getTitle() => $title), array('label' => "A comme recette", 'color' => Color::colorEdge('recipe')));
     }
     return $graph;
 }
Пример #3
0
 public function addAndLinkNodeForFuncReq($graph, $funcReq)
 {
     $title = $funcReq->getTitle();
     $graph->addNode($title, array('shape' => 'box', Color::colorNode('funcreq')));
     $graph->addEdge(array($this->title => $title), array('label' => "A comme besoin fonctionnel", 'color' => Color::colorEdge('funcreq')));
     $graph = $funcReq->FRGraphYourself($graph);
 }
Пример #4
0
 public function linkWithString($graph, $string, $label, $type)
 {
     if ($string != null) {
         $graph->addEdge(array($this->title => $string), array('label' => $label, 'color' => Color::colorEdge($type)));
     }
 }