コード例 #1
0
ファイル: cs_agb_controller.php プロジェクト: a2call/commsy
 /**
  * constructor
  */
 public function __construct(cs_environment $environment)
 {
     // call parent
     parent::__construct($environment);
     $this->_tpl_file = 'agb';
     $this->_addition_selects = false;
 }
コード例 #2
0
ファイル: cs_edit_controller.php プロジェクト: a2call/commsy
 /**
  * constructor
  */
 public function __construct(cs_environment $environment)
 {
     // call parent
     parent::__construct($environment);
     // init variables
     /*
     $this->getViewMode() = 'browse';
     $this->_filter = array();
     $this->_paging = array(
     	'offset'	=> 0,
     	'limit'		=> 20
     );
     */
 }
コード例 #3
0
ファイル: cs_list_controller.php プロジェクト: a2call/commsy
 /**
  * constructor
  */
 public function __construct(cs_environment $environment)
 {
     // call parent
     parent::__construct($environment);
     // init variables
     /*
     $this->getViewMode() = 'browse';
     $this->_filter = array();
     $this->_paging = array(
     	'offset'	=> 0,
     	'limit'		=> 20
     );
     */
     // remove delete_sel_cookie
     $this->_environment->removeCurrentParameter('delete_sel_cookie');
 }
コード例 #4
0
 /**
  * constructor
  */
 public function __construct(cs_environment $environment)
 {
     // call parent
     parent::__construct($environment);
     // init variables
     /*
     $this->getViewMode() = 'browse';
     $this->_filter = array();
     $this->_paging = array(
     	'offset'	=> 0,
     	'limit'		=> 20
     );
     */
     $c_old_text_formating_array = $this->_environment->getConfiguration('c_old_text_formating_array');
     if (!empty($c_old_text_formating_array) and is_array($c_old_text_formating_array) and in_array($this->_environment->getCurrentContextID(), $c_old_text_formating_array)) {
         $this->_with_old_text_formating = true;
     }
 }
コード例 #5
0
 /**
  * constructor
  */
 public function __construct(cs_environment $environment)
 {
     // call parent
     parent::__construct($environment);
     $this->_tpl_file = 'user_action';
 }