-
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 #17 from PabloRN/master
Solucionados errores, agragando mudulos de recursos
- Loading branch information
Showing
76 changed files
with
1,777 additions
and
392 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
require_once dirname(__FILE__).'/../lib/articuloGeneratorConfiguration.class.php'; | ||
require_once dirname(__FILE__).'/../lib/articuloGeneratorHelper.class.php'; | ||
|
||
/** | ||
* articulo actions. | ||
* | ||
* @package bibliocnic | ||
* @subpackage articulo | ||
* @author Your name here | ||
* @version SVN: $Id: actions.class.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class articuloActions extends autoArticuloActions | ||
{ | ||
} |
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: Articulo | ||
theme: dmAdmin | ||
non_verbose_templates: true | ||
with_show: false | ||
route_prefix: articulo | ||
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' | ||
- slide_id | ||
- created_by | ||
- updated_by | ||
- autors_list | ||
- tematicas_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 | ||
- palabras_claves | ||
- slide_id | ||
- 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] | ||
Slide: [slide_id_form, slide_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: ArticuloAdminForm | ||
fields: { } | ||
edit: ~ | ||
new: ~ |
12 changes: 12 additions & 0 deletions
12
apps/admin/modules/articulo/lib/ArticuloAdminExport.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 | ||
|
||
/** | ||
* articulo admin export | ||
* | ||
* @package bibliocnic | ||
* @subpackage articulo | ||
* @author Your name here | ||
*/ | ||
class ArticuloAdminExport 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 | ||
|
||
/** | ||
* articulo admin form | ||
* | ||
* @package bibliocnic | ||
* @subpackage articulo | ||
* @author Your name here | ||
*/ | ||
class ArticuloAdminForm extends BaseArticuloForm | ||
{ | ||
public function configure() | ||
{ | ||
parent::configure(); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/articulo/lib/articuloGeneratorConfiguration.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 | ||
|
||
/** | ||
* articulo module configuration. | ||
* | ||
* @package bibliocnic | ||
* @subpackage articulo | ||
* @author Your name here | ||
* @version SVN: $Id: configuration.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class articuloGeneratorConfiguration extends BaseArticuloGeneratorConfiguration | ||
{ | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/articulo/lib/articuloGeneratorHelper.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 | ||
|
||
/** | ||
* articulo module helper. | ||
* | ||
* @package bibliocnic | ||
* @subpackage articulo | ||
* @author Your name here | ||
* @version SVN: $Id: helper.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class articuloGeneratorHelper extends BaseArticuloGeneratorHelper | ||
{ | ||
} |
16 changes: 16 additions & 0 deletions
16
apps/admin/modules/bibliotecaPersonal/actions/actions.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,16 @@ | ||
<?php | ||
|
||
require_once dirname(__FILE__).'/../lib/bibliotecaPersonalGeneratorConfiguration.class.php'; | ||
require_once dirname(__FILE__).'/../lib/bibliotecaPersonalGeneratorHelper.class.php'; | ||
|
||
/** | ||
* bibliotecaPersonal actions. | ||
* | ||
* @package bibliocnic | ||
* @subpackage bibliotecaPersonal | ||
* @author Your name here | ||
* @version SVN: $Id: actions.class.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class bibliotecaPersonalActions extends autoBibliotecaPersonalActions | ||
{ | ||
} |
115 changes: 115 additions & 0 deletions
115
apps/admin/modules/bibliotecaPersonal/config/generator.yml
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: bibliotecapersonal | ||
theme: dmAdmin | ||
non_verbose_templates: true | ||
with_show: false | ||
route_prefix: biblioteca_personal | ||
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' | ||
- slide_id | ||
- created_by | ||
- updated_by | ||
- autors_list | ||
- tematicas_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 | ||
- palabras_claves | ||
- slide_id | ||
- 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] | ||
Slide: [slide_id_form, slide_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: bibliotecapersonalAdminForm | ||
fields: { } | ||
edit: ~ | ||
new: ~ |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/bibliotecaPersonal/lib/bibliotecaPersonalGeneratorConfiguration.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 | ||
|
||
/** | ||
* bibliotecaPersonal module configuration. | ||
* | ||
* @package bibliocnic | ||
* @subpackage bibliotecaPersonal | ||
* @author Your name here | ||
* @version SVN: $Id: configuration.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class bibliotecaPersonalGeneratorConfiguration extends BaseBibliotecaPersonalGeneratorConfiguration | ||
{ | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/admin/modules/bibliotecaPersonal/lib/bibliotecaPersonalGeneratorHelper.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 | ||
|
||
/** | ||
* bibliotecaPersonal module helper. | ||
* | ||
* @package bibliocnic | ||
* @subpackage bibliotecaPersonal | ||
* @author Your name here | ||
* @version SVN: $Id: helper.php 12474 2008-10-31 10:41:27Z fabien $ | ||
*/ | ||
class bibliotecaPersonalGeneratorHelper extends BaseBibliotecaPersonalGeneratorHelper | ||
{ | ||
} |
12 changes: 12 additions & 0 deletions
12
apps/admin/modules/bibliotecaPersonal/lib/bibliotecapersonalAdminExport.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 | ||
|
||
/** | ||
* bibliotecaPersonal admin export | ||
* | ||
* @package bibliocnic | ||
* @subpackage bibliotecaPersonal | ||
* @author Your name here | ||
*/ | ||
class bibliotecapersonalAdminExport extends myDoctrineTableExport | ||
{ | ||
} |
16 changes: 16 additions & 0 deletions
16
apps/admin/modules/bibliotecaPersonal/lib/bibliotecapersonalAdminForm.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,16 @@ | ||
<?php | ||
|
||
/** | ||
* bibliotecaPersonal admin form | ||
* | ||
* @package bibliocnic | ||
* @subpackage bibliotecaPersonal | ||
* @author Your name here | ||
*/ | ||
class bibliotecapersonalAdminForm extends BasebibliotecapersonalForm | ||
{ | ||
public function configure() | ||
{ | ||
parent::configure(); | ||
} | ||
} |
Oops, something went wrong.