function htmlChecklistsView()
 {
     parent::htmlView();
     $this->sColumnTitle = STR_CMMN_OPTIONS;
     $this->bShowPager = false;
     $this->sSortAction = 'htmlChecklistsView.execurl';
 }
 function Render(&$oView)
 {
     global $g_oSec, $dcl_info;
     if (!$g_oSec->HasPerm(DCL_ENTITY_ADDRTYPE, DCL_PERM_VIEW)) {
         return PrintPermissionDenied();
     }
     parent::Render($oView);
 }
 function Render(&$oView)
 {
     global $g_oSec, $dcl_info;
     if ($g_oSec->HasPerm(DCL_ENTITY_SOURCE, DCL_PERM_VIEW)) {
         parent::Render($oView);
     } else {
         return PrintPermissionDenied();
     }
 }
 function htmlProductModuleView()
 {
     global $g_oSec;
     parent::htmlView();
     if ($g_oSec->HasAnyPerm(array(DCL_ENTITY_PRODUCTMODULE => array($g_oSec->PermArray(DCL_PERM_MODIFY), $g_oSec->PermArray(DCL_PERM_DELETE))))) {
         $this->sColumnTitle = STR_CMMN_OPTIONS;
     }
     $this->sSortAction = 'htmlProductModuleView.execurl';
 }
 function htmlChecklistTplView()
 {
     parent::htmlView();
     $this->sColumnTitle = STR_CMMN_OPTIONS;
     $this->sSortAction = 'htmlChecklistTplView.execurl';
 }
 function htmlBuildManagerVersionView()
 {
     parent::htmlView();
     $this->sColumnTitle = STR_CMMN_OPTIONS;
     $this->productid = 0;
 }
 function _SetStaticOptions()
 {
     parent::_SetStaticOptions();
     $this->_SetVar('TXT_GO', STR_CMMN_GO);
     $this->_SetVar('TXT_FILTER', 'Filter');
     $this->_SetVar('TXT_ACTIVE', STR_CMMN_ACTIVE);
 }