default_template = "
{{concept.uri}}
{{concept.broaders_list}}
{{concept.narrowers_list}}
";
}
public function render($datas){
//on rajoute nos éléments...
//le titre
$render_datas = array();
$render_datas['title'] = $this->msg["frbr_entity_concepts_view_title"];
$render_datas['concept'] = new authority(0, $datas[0], AUT_TABLE_CONCEPT);
//on rappelle le tout...
return parent::render($render_datas);
}
public function get_format_data_structure(){
$format = array();
$format[] = array(
'var' => "title",
'desc' => $this->msg['frbr_entity_concepts_view_title']
);
$concept = array(
'var' => "concept",
'desc' => $this->msg['frbr_entity_concepts_view_label'],
'children' => authority::get_properties(AUT_TABLE_CONCEPT, "concept")
);
$format[] = $concept;
$format = array_merge($format,parent::get_format_data_structure());
return $format;
}
}