Ejemplo n.º 1
0
 /**
  * The construc method, to do some auto things.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->common->startSession();
     $this->common->sendHeader();
     $this->common->setCompany();
     $this->common->setUser();
     $this->common->loadConfigFromDB();
     if (isset($this->config->custom->productproject)) {
         $productCommon = $projectCommon = 0;
         list($productCommon, $projectCommon) = explode('_', $this->config->custom->productproject);
         if ($productCommon != 0 or $projectCommon != 0) {
             $this->lang->productCommon = $this->lang->productCommonList[$productCommon];
             $this->lang->projectCommon = $this->lang->projectCommonList[$projectCommon];
             $this->app->loadLang('common');
         } else {
             $this->lang->productCommon = "产品";
             $this->lang->projectCommon = "Sprint";
         }
     }
     $this->common->loadCustomFromDB();
     if ($this->app->getViewType() == 'mhtml') {
         $this->common->setMobileMenu();
     }
     $this->app->loadLang('company');
 }
Ejemplo n.º 2
0
 public function __CONSTRUCT()
 {
     parent::__CONSTRUCT();
     $this->loadModel('customer', 'crm');
     $this->loadModel('contact', 'crm');
     $this->loadModel('resume', 'crm');
 }
Ejemplo n.º 3
0
 /**
  * Construct 
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('company')->setMenu();
     $this->loadModel('dept');
     $this->loadModel('todo');
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     if ($this->app->user->account != 'guest') {
         $this->cart->mergeToDb();
     }
 }
Ejemplo n.º 5
0
 /**
  * Construct function, load model of project and story modules.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('project');
     $this->loadModel('story');
     $this->loadModel('tree');
 }
 /**
  * construct. 
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     if (!$this->loadModel('sso')->checkKey()) {
         die('');
     }
 }
Ejemplo n.º 7
0
 function init()
 {
     parent::init();
     if (!empty($this->params['oninit'])) {
         $this->do_call();
     }
 }
Ejemplo n.º 8
0
 /**
  * The construction function , check is install or not.
  * 
  * @access public
  * @return array
  */
 public function __construct()
 {
     if (!defined('RUN_MODE') or RUN_MODE != 'install') {
         die('error');
     }
     parent::__construct();
 }
Ejemplo n.º 9
0
 /**
  * Construct function, load dept and user models auto.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('dept');
     $this->app->loadLang('user');
     $this->company->setMenu();
 }
 /**
  * Construct function, load model of task, bug, my.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('task');
     $this->loadModel('bug');
     $this->loadModel('my')->setMenu();
 }
Ejemplo n.º 11
0
 /**
  * Construct function.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('user');
     $this->loadModel('dept');
     $this->my->setMenu();
 }
Ejemplo n.º 12
0
 public function __construct($moduleName = '', $methodName = '')
 {
     parent::__construct($moduleName, $methodName);
     $this->moduleName = 'mySprintBoard';
     $this->loadModel('mySprintBoard');
     $this->loadModel('project');
 }
Ejemplo n.º 13
0
 /**
  * The construction function , check is install or not.
  * 
  * @access public
  * @return array
  */
 public function __construct()
 {
     if (!defined('RUN_MODE') or RUN_MODE != 'install') {
         die('error');
     }
     parent::__construct();
     $this->loadModel('site')->setSite();
 }
Ejemplo n.º 14
0
 /**
  * Construct function, load model of date.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->app->loadClass('date');
     $this->loadModel('task');
     $this->loadModel('order', 'crm');
     $this->loadModel('customer', 'crm');
 }
Ejemplo n.º 15
0
 /**
  * 发起团
  * http://localhost/beauty/index.php?m=ruan&c=index&a=create
  */
 public function create()
 {
     $data = tool::getParams("data", '');
     $data['created'] = strtotime(date('Y-m-d H:i:s'));
     $data['orderNum'] = 0;
     $result = parent::save($data);
     echo json_encode(array('code' => '0', 'message' => '成功', 'data' => $result));
 }
Ejemplo n.º 16
0
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('tree');
     $this->loadModel('user');
     $this->loadModel('action');
     $this->infolibs = $this->info->getLibs();
 }
Ejemplo n.º 17
0
 /**
  * Construct function, load product, tree, user auto.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('product');
     $this->loadModel('tree');
     $this->loadModel('user');
     $this->view->products = $this->products = $this->product->getPairs('nocode');
 }
Ejemplo n.º 18
0
 public function __construct()
 {
     parent::__construct();
     if (RUN_MODE == 'admin') {
         $this->view->treeModuleMenu = $this->loadModel('tree')->getTreeMenu('product', 0, array('treeModel', 'createAdminLink'));
         $this->view->treeManageLink = html::a(helper::createLink('tree', 'browse', "type=product"), $this->lang->tree->manage);
     }
 }
Ejemplo n.º 19
0
 /**
  * The construct function, load product, tree, user auto.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('product');
     $this->loadModel('project');
     $this->loadModel('tree');
     $this->loadModel('user');
     $this->loadModel('action');
 }
Ejemplo n.º 20
0
 /**
  * Construct.
  * 
  * @access public
  * @return void
  */
 public function __construct($moduleName = '', $methodName = '')
 {
     parent::__construct($moduleName, $methodName);
     /* Task #1967. check the function of fsocket. */
     if (isset($this->config->mail->mta) and $this->config->mail->mta != 'sendcloud' and !function_exists('fsockopen')) {
         echo js::alert($this->lang->mail->nofsocket);
         die(js::locate('back'));
     }
 }
Ejemplo n.º 21
0
 public function __construct()
 {
     parent::__construct();
     if (RUN_MODE == 'admin') {
         $this->view->treeModuleMenu = $this->loadModel('tree')->getTreeMenu('product', 0, array('treeModel', 'createAdminLink'));
         $this->view->treeManageLink = html::a(helper::createLink('product', 'setting'), $this->lang->product->setting, "data-toggle='modal'");
         $this->view->treeManageLink .= '  ' . html::a(helper::createLink('tree', 'browse', "type=product"), $this->lang->tree->manage);
     }
 }
Ejemplo n.º 22
0
 /**
  * Construct.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     /* Task #1967. check the function of fsocket. */
     if (!function_exists('fsockopen')) {
         echo js::alert($this->lang->mail->nofsocket);
         die(js::locate('back'));
     }
 }
 /**
  * The construc method, to do some auto things.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->common->startSession();
     $this->common->sendHeader();
     $this->common->setCompany();
     $this->common->setUser();
     $this->common->loadConfigFromDB();
     $this->app->loadLang('company');
 }
 /**
  * Construct function, Set projects.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     if ($this->methodName != 'computeburn') {
         $this->projects = $this->project->getPairs();
         if (!$this->projects and $this->methodName != 'create') {
             $this->locate($this->createLink('project', 'create'));
         }
     }
 }
Ejemplo n.º 25
0
 public function __construct()
 {
     parent::__construct();
     $this->loadModel('story');
     $this->loadModel('project');
     $this->loadModel('user');
     $this->loadModel('bug');
     $this->products = $this->loadModel('product')->getPairs('nocode');
     $this->moduleName = 'pro';
 }
Ejemplo n.º 26
0
 /**
  * Construct function.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     if (!defined('IN_INSTALL')) {
         die;
     }
     parent::__construct();
     $this->app->loadLang('user');
     $this->app->loadLang('admin');
     $this->config->webRoot = getWebRoot();
 }
Ejemplo n.º 27
0
 /**
  * Construct function, Set projects.
  * 
  * @access public
  * @return void
  */
 public function __construct($moduleName = '', $methodName = '')
 {
     parent::__construct($moduleName, $methodName);
     if ($this->methodName != 'computeburn') {
         $this->projects = $this->project->getPairs('nocode');
         if (!$this->projects and $this->methodName != 'create' and $this->app->getViewType() != 'mhtml') {
             $this->locate($this->createLink('project', 'create'));
         }
     }
 }
Ejemplo n.º 28
0
 public function __construct()
 {
     parent::__construct();
     if (empty($this->config->site->yangcong)) {
         $this->send(array('result' => 'fail', 'message' => $this->lang->yangcong->getQrcodeFaild));
     }
     $config = json_decode($this->config->site->yangcong);
     $this->app->loadClass('yangcongapi', true);
     $this->api = new yangcongapi($config);
 }
Ejemplo n.º 29
0
 public function __CONSTRUCT()
 {
     parent::__CONSTRUCT();
     $this->app->loadClass('pager', $static = true);
     $pager = new pager(0, 8, 1);
     $this->view->latestArticles = $this->loadModel('article', 'sys')->getList('blog', 0, null, null, 'id_desc');
     $this->view->authors = $this->loadModel('article', 'sys')->getAuthorList('blog');
     $this->view->months = $this->loadModel('article', 'sys')->getMonthList('blog');
     $this->view->tags = array_unique($this->loadModel('article', 'sys')->getTagList('blog'));
     $this->view->latestComments = $this->loadModel('message', 'sys')->getList('comment', 'blog', '');
 }
Ejemplo n.º 30
0
 /**
  * Construct function, load user, tree, action auto.
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->libs = $this->doc->getLibList();
     $this->loadModel('user');
     $this->loadModel('tree');
     $this->loadModel('action');
     //$this->loadModel('product', 'crm');
     //$this->loadModel('project');
     $this->lang->doc->menu = $this->doc->getSubMenus($this->libs);
 }