27 lines
581 B
PHP
27 lines
581 B
PHP
<?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();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|