init
This commit is contained in:
27
modules/EcmDesigns/views/view.detail.php
Normal file
27
modules/EcmDesigns/views/view.detail.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
require_once('include/MVC/View/views/view.detail.php');
|
||||
|
||||
class EcmDesignsViewDetail extends ViewDetail {
|
||||
|
||||
|
||||
function EcmDesignsViewDetail(){
|
||||
//parent::ViewDetail();
|
||||
//turn off normal display of subpanels
|
||||
// $this->options['show_subpanels'] = false;
|
||||
parent::SugarView();
|
||||
}
|
||||
|
||||
function display(){
|
||||
|
||||
$this->ss->assign('POSITIONS3', $this->bean->showPositions3());
|
||||
|
||||
$this->dv->process();
|
||||
|
||||
echo $this->dv->display();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user