-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from PabloRN/master
Cambios en el schema
- Loading branch information
Showing
65 changed files
with
1,720 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
require_once dirname(__FILE__).'/../lib/monografiaGeneratorConfiguration.class.php'; | ||
require_once dirname(__FILE__).'/../lib/monografiaGeneratorHelper.class.php'; | ||
|
||
/** | ||
* monografia actions. | ||
* | ||
* @package bibliocnic | ||
* @subpackage monografia | ||
* @author Your name here | ||
* @version SVN: $Id: actions.class.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class monografiaActions extends autoMonografiaActions | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
generator: | ||
class: dmAdminDoctrineGenerator | ||
param: | ||
model_class: monografia | ||
theme: dmAdmin | ||
non_verbose_templates: true | ||
with_show: false | ||
route_prefix: monografia | ||
with_doctrine_route: false | ||
config: | ||
actions: ~ | ||
fields: | ||
autor_list: | ||
label: Autor | ||
tematica_list: | ||
label: Tematica | ||
dm_users_list: | ||
label: Users | ||
is_active: | ||
label: Active | ||
list: | ||
display: | ||
- '=id' | ||
- pdf_id | ||
- created_by | ||
- updated_by | ||
- autor_list | ||
- tematica_list | ||
- dm_users_list | ||
- titulo | ||
- anno | ||
- resumen | ||
- idioma | ||
- aprobado | ||
- is_active | ||
- formato_duro | ||
- palabras_claves | ||
- pais | ||
- institucion | ||
- total_paginas | ||
- num_internacional | ||
- organismo | ||
- tipo_dc | ||
- cant_registros | ||
- fecha_inicial | ||
- fecha_final | ||
- ciudad_pub | ||
- editorial | ||
- isbn | ||
- volumen | ||
- num_revista | ||
- pagina_inicial | ||
- pagina_final | ||
- issn | ||
- num_diapositivas | ||
- departamento | ||
- ciudad | ||
- tutor | ||
- tipo | ||
- created_at | ||
- updated_at | ||
sort: | ||
- position | ||
- asc | ||
table_method: getAdminListQuery | ||
table_count_method: ~ | ||
sortable: true | ||
filter: | ||
display: | ||
- id | ||
- aprobado | ||
- is_active | ||
- formato_duro | ||
- titulo | ||
- anno | ||
- resumen | ||
- idioma | ||
- pdf_id | ||
- palabras_claves | ||
- pais | ||
- institucion | ||
- total_paginas | ||
- num_internacional | ||
- organismo | ||
- tipo_dc | ||
- cant_registros | ||
- fecha_inicial | ||
- fecha_final | ||
- ciudad_pub | ||
- editorial | ||
- isbn | ||
- volumen | ||
- num_revista | ||
- pagina_inicial | ||
- pagina_final | ||
- issn | ||
- num_diapositivas | ||
- departamento | ||
- ciudad | ||
- tutor | ||
- tipo | ||
- created_at | ||
- updated_at | ||
- created_by | ||
- updated_by | ||
form: | ||
display: | ||
NONE: [aprobado, is_active, formato_duro, created_by, updated_by] | ||
Pdf: [pdf_id_form, pdf_id_view] | ||
Users: [dm_users_list] | ||
Others: [titulo, anno, resumen, idioma, palabras_claves, pais, institucion, total_paginas, num_internacional, organismo, tipo_dc, cant_registros, fecha_inicial, fecha_final, ciudad_pub, editorial, isbn, volumen, num_revista, pagina_inicial, pagina_final, issn, num_diapositivas, departamento, ciudad, tutor, tipo] | ||
class: monografiaAdminForm | ||
fields: { } | ||
edit: ~ | ||
new: ~ |
12 changes: 12 additions & 0 deletions
12
apps/admin/modules/monografia/lib/monografiaAdminExport.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
/** | ||
* monografia admin export | ||
* | ||
* @package bibliocnic | ||
* @subpackage monografia | ||
* @author Your name here | ||
*/ | ||
class monografiaAdminExport extends myDoctrineTableExport | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
/** | ||
* monografia admin form | ||
* | ||
* @package bibliocnic | ||
* @subpackage monografia | ||
* @author Your name here | ||
*/ | ||
class monografiaAdminForm extends BasemonografiaForm | ||
{ | ||
public function configure() | ||
{ | ||
parent::configure(); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/monografia/lib/monografiaGeneratorConfiguration.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* monografia module configuration. | ||
* | ||
* @package bibliocnic | ||
* @subpackage monografia | ||
* @author Your name here | ||
* @version SVN: $Id: configuration.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class monografiaGeneratorConfiguration extends BaseMonografiaGeneratorConfiguration | ||
{ | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/monografia/lib/monografiaGeneratorHelper.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* monografia module helper. | ||
* | ||
* @package bibliocnic | ||
* @subpackage monografia | ||
* @author Your name here | ||
* @version SVN: $Id: helper.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class monografiaGeneratorHelper extends BaseMonografiaGeneratorHelper | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
require_once dirname(__FILE__).'/../lib/recursoGeneratorConfiguration.class.php'; | ||
require_once dirname(__FILE__).'/../lib/recursoGeneratorHelper.class.php'; | ||
|
||
/** | ||
* recurso actions. | ||
* | ||
* @package bibliocnic | ||
* @subpackage recurso | ||
* @author Your name here | ||
* @version SVN: $Id: actions.class.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class recursoActions extends autoRecursoActions | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
generator: | ||
class: dmAdminDoctrineGenerator | ||
param: | ||
model_class: recurso | ||
theme: dmAdmin | ||
non_verbose_templates: true | ||
with_show: false | ||
route_prefix: recurso | ||
with_doctrine_route: false | ||
config: | ||
actions: ~ | ||
fields: | ||
autors_list: | ||
label: Autors | ||
tematicas_list: | ||
label: Tematicas | ||
dm_users_list: | ||
label: Users | ||
is_active: | ||
label: Active | ||
list: | ||
display: | ||
- '=id' | ||
|
||
- created_by | ||
- updated_by | ||
- autors_list | ||
- tematicas_list | ||
- dm_users_list | ||
- titulo | ||
- anno | ||
- resumen | ||
- idioma | ||
- aprobado | ||
- is_active | ||
- formato_duro | ||
- palabras_claves | ||
- type | ||
- pais | ||
- institucion | ||
- total_paginas | ||
- num_internacional | ||
- organismo | ||
- tipo_dc | ||
- cant_registros | ||
- fecha_inicial | ||
- fecha_final | ||
- ciudad_pub | ||
- editorial | ||
- isbn | ||
- volumen | ||
- num_revista | ||
- pagina_inicial | ||
- pagina_final | ||
- issn | ||
- num_diapositivas | ||
- departamento | ||
- ciudad | ||
- tutor | ||
- tipo | ||
- created_at | ||
- updated_at | ||
sort: | ||
- position | ||
- asc | ||
table_method: getAdminListQuery | ||
table_count_method: ~ | ||
sortable: true | ||
filter: | ||
display: | ||
- id | ||
- aprobado | ||
- is_active | ||
- formato_duro | ||
- titulo | ||
- anno | ||
- resumen | ||
- idioma | ||
|
||
- palabras_claves | ||
- type | ||
- pais | ||
- institucion | ||
- total_paginas | ||
- num_internacional | ||
- organismo | ||
- tipo_dc | ||
- cant_registros | ||
- fecha_inicial | ||
- fecha_final | ||
- ciudad_pub | ||
- editorial | ||
- isbn | ||
- volumen | ||
- num_revista | ||
- pagina_inicial | ||
- pagina_final | ||
- issn | ||
- num_diapositivas | ||
- departamento | ||
- ciudad | ||
- tutor | ||
- tipo | ||
- created_at | ||
- updated_at | ||
- created_by | ||
- updated_by | ||
form: | ||
display: | ||
NONE: [aprobado, is_active, formato_duro, created_by, updated_by] | ||
|
||
Users: [dm_users_list] | ||
Others: [titulo, anno, resumen, idioma, palabras_claves, type, pais, institucion, total_paginas, num_internacional, organismo, tipo_dc, cant_registros, fecha_inicial, fecha_final, ciudad_pub, editorial, isbn, volumen, num_revista, pagina_inicial, pagina_final, issn, num_diapositivas, departamento, ciudad, tutor, tipo] | ||
class: recursoAdminForm | ||
fields: { } | ||
edit: ~ | ||
new: ~ |
12 changes: 12 additions & 0 deletions
12
apps/admin/modules/recurso/lib/recursoAdminExport.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
/** | ||
* recurso admin export | ||
* | ||
* @package bibliocnic | ||
* @subpackage recurso | ||
* @author Your name here | ||
*/ | ||
class recursoAdminExport extends myDoctrineTableExport | ||
{ | ||
} |
Oops, something went wrong.