blob: d5934686958b248b0f4991332bb2df6f7b9b2cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
/**
* @author Daniel Sampedro Bello <darthdaniel85@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2013 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @since 3.3
* @package Wsat.pages
*/
Prado::using("System.Wsat.TWsatARGenerator");
class TWsatGenerateAR extends TPage {
public function generate($sender) {
if ($this->IsValid) {
$table_name = $this->table_name->Text;
$output_folder_ns = $this->output_folder->Text;
$class_prefix = $this->class_prefix->Text;
$class_sufix = $this->class_sufix->Text;
try {
$ar_generator = new TWsatARGenerator();
$ar_generator->setOpFile($output_folder_ns);
$ar_generator->setClasPrefix($class_prefix);
$ar_generator->setClassSufix($class_sufix);
if ($this->build_rel->Checked) {
$ar_generator->buildRelations();
}
if ($table_name != "*") {
$ar_generator->generate($table_name);
} else {
$ar_generator->generateAll();
}
$this->feedback_panel->CssClass = "green_panel";
$this->generation_msg->Text = "The code has been generated successfully.";
} catch (Exception $ex) {
$this->feedback_panel->CssClass = "red_panel";
$this->generation_msg->Text = $ex->getMessage();
}
$this->feedback_panel->Visible = true;
}
}
public function preview($sender) {
// $ar_generator = new TWsatARGenerator();
// $ar_generator->renderAllTablesInformation();
throw new THttpException(500, "Not implemented yet.");
}
}
?>
|