当前位置: 首页>>代码示例>>PHP>>正文


PHP Variable::charger方法代码示例

本文整理汇总了PHP中Variable::charger方法的典型用法代码示例。如果您正苦于以下问题:PHP Variable::charger方法的具体用法?PHP Variable::charger怎么用?PHP Variable::charger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Variable的用法示例。


在下文中一共展示了Variable::charger方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: charger

 public function charger()
 {
     // La variable n'existe pas ? La créer en y affectant la valeur par defaut
     if (!parent::charger($this->nom)) {
         $this->valeur = $this->defaut;
         $this->protege = 1;
         $this->cache = 1;
         $this->add();
     }
 }
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:10,代码来源:TlogDestinationConfig.class.php

示例2: pre_config

 /**
  * Appeler dans les fichiers: ./tinymce4_admin_title.php ; ./filemanager/config.php 
  * @return array
  * @see extract()
  */
 public static function pre_config()
 {
     if (!isset($_SESSION['util'], $_SESSION[self::MODULE])) {
         die('ERROR 403');
     }
     $urlsite = new Variable();
     $urlsite->charger('urlsite');
     $baseurl = rtrim('/' . preg_replace('/https?:\\/\\/[^\\/]+\\/?/', '', $urlsite->valeur), '/') . '/';
     $style_chem = new Variable();
     $style_chem->charger('style_chem');
     return array('thelia_path' => '../client/plugins/' . self::MODULE . '/', 'thelia_urlsite' => $urlsite->valeur, 'thelia_baseurl' => $baseurl, 'thelia_utilisateur' => 'client/gfx/utilisateur/', 'thelia_styles' => $urlsite->valeur && $style_chem->valeur ? $urlsite->valeur . $style_chem->valeur : '');
 }
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:17,代码来源:Tinymce4.class.php

示例3: maj_variable

 private function maj_variable($nom, $valeur)
 {
     $variable = new Variable();
     if ($variable->charger($nom)) {
         $variable->valeur = $valeur;
         $variable->maj();
     } else {
         $variable->nom = $nom;
         $variable->valeur = $valeur;
         $variable->protege = 1;
         $variable->cache = 1;
         $variable->add();
     }
 }
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:14,代码来源:logs.php

示例4: ecrire

 public static function ecrire($nom, $valeur, $creer_si_inexistante = false, $protege = 1, $cache = 1)
 {
     $var = new Variable($nom);
     if ($creer_si_inexistante && !$var->charger($nom)) {
         $var->nom = $nom;
         $var->valeur = $valeur;
         $var->protege = $protege;
         $var->cache = $cache;
         $var->add();
     } else {
         $var->valeur = $valeur;
         $var->maj();
     }
 }
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:14,代码来源:Variable.class.php


注:本文中的Variable::charger方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。