示例#1
0
 function __construct($view, $href, $intermediate = true, $labels = null)
 {
     /* Strass est sexiste */
     $labels = $labels ? $labels : self::$masculin;
     parent::__construct($href, $intermediate, $labels);
     $this->view = $view;
 }
示例#2
0
文件: Form.php 项目: bersace/strass
 function __construct()
 {
     parent::__construct(null);
 }
示例#3
0
文件: Text.php 项目: bersace/strass
 function __construct($href, $imgdir, $intermediate = true, $labels = array())
 {
     parent::__construct($href, $intermediate, $labels);
     $this->imgdir = $imgdir;
 }
示例#4
0
 function __construct($view)
 {
     $this->view = $view;
     parent::__construct($view->url(array('page' => '%i')), true, array('previous' => "Précédents", 'next' => "Suivants"));
 }
示例#5
0
 function __construct($view)
 {
     $this->view = $view;
     parent::__construct($view->url(array('unite' => $view->unite->slug, 'annee' => '%i')), true, null);
 }