Subversion Repositories eFlore/Applications.cel

Rev

Rev 3682 | Rev 3690 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3682 Rev 3683
Line 440... Line 440...
440
        }
440
        }
441
    }
441
    }
Line 442... Line 442...
442
    
442
    
443
    private function traiterProjetTags() {
443
    private function traiterProjetTags() {
444
        if (strpos($this->projet, ',') === false) {
444
        if (strpos($this->projet, ',') === false) {
445
            $this->projetTags = array($this->projet);
445
            $this->projetTags = array('Projets coopƩratifs>'.$this->projet);
446
        } else {
446
        } else {
447
            $projetTagsTxt = explode(',', $this->projet);
447
            $projetTagsTxt = explode(',', $this->projet);
448
            foreach ($projetTagsTxt as $tag) {
448
            foreach ($projetTagsTxt as $tag) {
449
                $this->projetTags[] = $tag;
449
                $this->projetTags[] = 'Projets coopƩratifs>'.$tag;
450
            }
450
            }
451
        }
451
        }
Line 452... Line 452...
452
    }
452
    }