-
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.
- Loading branch information
Showing
23 changed files
with
3,183 additions
and
296 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
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
12 changes: 12 additions & 0 deletions
12
apps/admin/modules/respuesta/lib/respuestabAdminExport.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 | ||
|
||
/** | ||
* respuesta admin export | ||
* | ||
* @package bibliocnic | ||
* @subpackage respuesta | ||
* @author Your name here | ||
*/ | ||
class respuestabAdminExport 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 | ||
|
||
/** | ||
* respuesta admin form | ||
* | ||
* @package bibliocnic | ||
* @subpackage respuesta | ||
* @author Your name here | ||
*/ | ||
class respuestabAdminForm extends BaserespuestabForm | ||
{ | ||
public function configure() | ||
{ | ||
parent::configure(); | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
{ | ||
echo _open('li.element'); | ||
|
||
echo $recurso; | ||
echo _link($recurso); | ||
|
||
echo _close('li'); | ||
} | ||
|
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 |
---|---|---|
@@ -1,36 +1,9 @@ | ||
<?php | ||
/** | ||
* Tesis actions | ||
* | ||
*/ | ||
class tesisActions extends myFrontModuleActions | ||
{ | ||
|
||
public function executeFormWidget(dmWebRequest $request) | ||
{ | ||
$form = new tesisForm(); | ||
|
||
if ($request->hasParameter($form->getName()) && $form->bindAndValid($request)) | ||
{ | ||
$form->save(); | ||
$this->redirectBack(); | ||
} | ||
|
||
$this->forms['tesis'] = $form; | ||
} | ||
|
||
public function executeFormUploadWidget(dmWebRequest $request) | ||
{ | ||
$form = new tesisForm(); | ||
|
||
if ($request->hasParameter($form->getName()) && $form->bindAndValid($request)) | ||
{ | ||
$form->save(); | ||
$this->redirectBack(); | ||
} | ||
|
||
$this->forms['tesis'] = $form; | ||
} | ||
|
||
|
||
} |
Oops, something went wrong.