Display project analytics in modal box

This commit is contained in:
Frederic Guillot
2017-01-08 14:00:51 -05:00
parent ea2cbb76d5
commit b3a450bace
23 changed files with 124 additions and 108 deletions

View File

@@ -374,7 +374,9 @@ class Paginator
'← '.t('Previous'),
$this->controller,
$this->action,
$this->getUrlParams($this->page - 1, $this->order, $this->direction)
$this->getUrlParams($this->page - 1, $this->order, $this->direction),
false,
'js-modal-replace'
);
} else {
$html .= '← '.t('Previous');
@@ -400,7 +402,9 @@ class Paginator
t('Next').' →',
$this->controller,
$this->action,
$this->getUrlParams($this->page + 1, $this->order, $this->direction)
$this->getUrlParams($this->page + 1, $this->order, $this->direction),
false,
'js-modal-replace'
);
} else {
$html .= t('Next').' →';
@@ -486,7 +490,9 @@ class Paginator
$label,
$this->controller,
$this->action,
$this->getUrlParams($this->page, $column, $direction)
$this->getUrlParams($this->page, $column, $direction),
false,
'js-modal-replace'
);
}
}