GlisWeb framework
_offerte.it-IT.php
Vai alla documentazione di questo file.
1 <?php
2 
3  // lingua di questo file
4  $l = 'it-IT';
5  $m = '_mod/_2200.offerte/';
6 
7  // vista righe
8  $p['righe_offerte'] = array(
9  'sitemap' => false,
10  'title' => array( $l => 'righe' ),
11  'h1' => array( $l => 'righe' ),
12  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'view.html' ),
13  'macro' => array( $m . '_src/_inc/_macro/_righe.offerte.view.php' ),
14  'parent' => array( 'id' => 'dashboard_commerciale' ),
15  'auth' => array( 'groups' => array( 'roots' ) ),
16  'etc' => array( 'tabs' => array( 'righe_offerte',
17  'offerte' ) ),
18  'menu' => array( 'admin' => array( 'label' => array( $l => 'offerte' ),
19  'priority' => 700 ) )
20  );
21 
22  // vista offerte
23  $p['offerte'] = array(
24  'sitemap' => false,
25  'title' => array( $l => 'offerte' ),
26  'h1' => array( $l => 'offerte' ),
27  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'view.html' ),
28  'macro' => array( $m . '_src/_inc/_macro/_offerte.view.php' ),
29  'parent' => array( 'id' => 'dashboard_commerciale' ),
30  'auth' => array( 'groups' => array( 'roots' ) ),
31  'etc' => array( 'tabs' => $p['righe_offerte']['etc']['tabs'] ),
32  );
33 
34 
35  // gestione offerte
36  $p['offerte_gestione'] = array(
37  'sitemap' => false,
38  'title' => array( $l => 'gestione' ),
39  'h1' => array( $l => 'gestione' ),
40  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'offerte.gestione.html' ),
41  'macro' => array( $m . '_src/_inc/_macro/_offerte.gestione.php' ),
42  'parent' => array( 'id' => 'offerte' ),
43  'auth' => array( 'groups' => array( 'roots' ) ),
44  'etc' => array( 'tabs' => array( 'offerte_gestione'
45 /*
46  'offerte_gestione_xml',
47  'offerte_gestione_pdf',
48  'offerte_gestione_pagamenti',
49 // 'offerte_gestione_invii',
50  'offerte_gestione_azioni'
51 */ ) )
52  );
53 
54 
55 
56  // gestione righe offerte
57  $p['righe_offerte_gestione'] = array(
58  'sitemap' => false,
59  'title' => array( $l => 'gestione' ),
60  'h1' => array( $l => 'gestione' ),
61  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'righe.offerte.gestione.html' ),
62  'macro' => array( $m . '_src/_inc/_macro/_righe.offerte.gestione.php' ),
63  'parent' => array( 'id' => 'righe_offerte' ),
64  'auth' => array( 'groups' => array( 'roots' ) )
65  );
66 
67 
68 
69 ?>
$p['righe_offerte']