Skip to content
Snippets Groups Projects
Commit 7a2c92ed authored by efalcy's avatar efalcy
Browse files

#rel 12091 : Add subdomains display

parent 62c3fa52
Branches
Tags
2 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!4dev#12091 Moulins portail jeunesse
......@@ -532,5 +532,22 @@ class RechercheController extends ZendAfi_Controller_Action {
public function setMoteurRecherche($moteur) {
$this->moteur = $moteur;
}
public function domainsBrowsingAction() {
if (!$catalogue=Class_Catalogue::find($this->_getParam('id_catalogue')))
$this->_redirect();
$fil=($fil=$this->_getParam('fil'))?
$fil.';'.$catalogue->getId():$catalogue->getId();
$subdomains=$catalogue->getChildren();
$this->view->datas_view=[];
foreach($subdomains as $subdomain) {
$this->view->datas_view[]=$this->view->url(['controller' =>'recherche',
'action' => 'domains-browsing',
'id_catalogue'=> $subdomain->getId(),
'fil' => $fil],null,true);
}
}
}
?>
\ No newline at end of file
<?php
xdebug_break();
foreach($this->datas_view as $data)
echo $this->tagAnchor($data,$data);
?>
......@@ -1887,4 +1887,26 @@ class RechercheControllerSimpleActionWithCvsActivatedAndPreferencesHiddenTest ex
}
}
class RechercheControllerDomainsBrowsing extends AbstractControllerTestCase {
public function setUp() {
parent::setUp();
$this->youth_domain = $this->fixture('Class_Catalogue',['id'=>3,
'libelle' => 'Youth']);
$this->a_letter_domain = $this->fixture('Class_Catalogue',['id'=>4,
'domaine_parent' => $this->youth_domain,
'libelle' => 'A']);
$this->animals_domain = $this->fixture('Class_Catalogue',['id'=>10,
'domaine_parent' => $this->a_letter_domain,
'libelle' => 'Animals']);
$this->dispatch('/recherche/domains-browsing/id_catalogue/3');
}
/** @test */
public function browsingYouthDomainShouldDisplayLinkToLetterADomain() {
$this->assertXPath('//a[@href="/recherche/domains-browsing/id_catalogue/4/fil/3"]',$this->_response->getBody());
}
}
?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment