Skip to content
Snippets Groups Projects
Commit 60574e85 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #64573 fix new feature for user

parent 5f9041d5
Branches
Tags
7 merge requests!2767Hotline,!2742Dev#64573 amelioration de la charte modele,!2724Dev#64573 amelioration de la charte modele,!2718Dev#64573 amelioration de la charte modele,!2679Dev#64573 amelioration de la charte modele,!2439WIP Dev#64573 amelioration de la charte modele,!2429Dev#64573 amelioration de la charte modele
Pipeline #2455 passed with stage
in 21 minutes and 6 seconds
......@@ -10,6 +10,11 @@ $description = (new Class_TableDescription('features'))
return $feature->getdesc();
})
->addColumn($this->_('Date de nouveauté'), function($feature)
{
return Class_Date::humanDate($feature->getdate(), 'dd MMMM yyyy');
})
->addRowAction(function($feature)
{
return $this->tagAnchor($feature->getwiki(), $this->_('Documentation'), ['target' => '_blank']);
......@@ -40,20 +45,17 @@ $description = (new Class_TableDescription('features'))
})
;
if(!empty($this->new_features)) {
$html = $this->tag('h2', $this->_('Les nouveautés que vous n\'avez pas encore vue.'))
. $this->renderTable($description,
$this->new_features,
['sorter' => true]);
$html = $this->tag('h2', $this->_('Les nouveautés que vous n\'avez pas encore vue.'))
. $this->renderTable($description,
$this->new_features,
['sorter' => true]);
echo $this->tag('div', $html);
echo $this->tag('div', $html);
}
if(!empty($this->checked_features)) {
$html = $this->tag('h2', $this->_('Les nouveautés que vous avez déjà vue.'))
. $this->renderTable($description,
$this->checked_features,
$html = $this->tag('h2', $this->_('Les nouveautés que vous avez déjà vue.'))
. $this->renderTable($description,
$this->checked_features,
['sorter' => true]);
echo $this->tag('div', $html);
}
\ No newline at end of file
echo $this->tag('div', $html);
\ No newline at end of file
......@@ -52,7 +52,15 @@ class Class_Feature {
$this->findCheckedBy($user),
function($a, $b)
{
return $a->getid() != $b->getid();
$first = $a->getid();
$second = $b->getid();
if($first == $second)
return 0;
return $first < $second
? -1
: 1;
});
}
......
......@@ -3,7 +3,19 @@
"label" : "Essayer une autre charte graphique",
"desc" : "Bokeh vous permet de changer la personnalisation de votre OPAC en un clic.",
"image" : "",
"video" : "",
"wiki" : "http://wiki.bokeh-library-portal.org/index.php?title=7.10.0",
"test" : "/admin/skin/index"
"test" : "/admin/skin/index",
"date" : "2017-09-15"
},
"61314" : {
"label" : "Explorateur de fichier",
"desc" : "Découvrer le nouvel explorateur de fichiers",
"image" : "",
"video" : "",
"wiki" : "http://wiki.bokeh-library-portal.org/index.php?title=7.10.0",
"test" : "/admin/file-manager",
"date" : "2017-09-15"
}
}
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