1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- class Pgma_View extends Glade_Window
- {
-
- protected $model;
-
-
- public $activeDetailView;
-
- public function __construct()
- {
- parent::__construct('winPgma');
- $this->model = new Pgma_Model();
- }
- }
|