GlisWeb framework
_matricole.it-IT.php
Vai alla documentazione di questo file.
1 <?php
2 
3  // lingua di questo file
4  $l = 'it-IT';
5  $m = '_mod/_4300.matricole/';
6 
7  // prodotti
8  $p['matricole'] = array(
9  'sitemap' => false,
10  'title' => array( $l => 'matricole' ),
11  'h1' => array( $l => 'matricole' ),
12  'parent' => array( 'id' => 'prodotti' ),
13  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'view.html' ),
14  'macro' => array( $m . '_src/_inc/_macro/_matricole.view.php' ),
15  'auth' => array( 'groups' => array( 'roots' ) ),
16  'menu' => array( 'admin' => array( 'label' => array( $l => 'matricole' ),
17  'priority' => 100 ) )
18  );
19 
20  $p['matricole_gestione'] = array(
21  'sitemap' => false,
22  'title' => array( $l => 'gestione' ),
23  'h1' => array( $l => 'gestione' ),
24  'parent' => array( 'id' => 'matricole' ),
25  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'matricole.gestione.html' ),
26  'macro' => array( $m . '_src/_inc/_macro/_matricole.gestione.php' ),
27  'auth' => array( 'groups' => array( 'roots' ) ),
28  'etc' => array( 'tabs' => array( 'matricole_gestione',
29  'matricole_gestione_stampe' ) )
30  );
31 
32  $p['matricole_gestione_stampe'] = array(
33  'sitemap' => false,
34  'title' => array( $l => 'stampe' ),
35  'h1' => array( $l => 'stampe' ),
36  'parent' => array( 'id' => 'matricole' ),
37  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'metro.html' ),
38  'macro' => array( $m . '_src/_inc/_macro/_matricole.gestione.php', $m . '_src/_inc/_macro/_matricole.gestione.stampe.php' ),
39  'auth' => array( 'groups' => array( 'roots' ) ),
40  'etc' => array( 'tabs' => $p['matricole_gestione']['etc']['tabs'] )
41  );
42 
43 ?>
$p['matricole']