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


PHP jeedom::getCurrentSysInfoFolder方法代码示例

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


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

示例1: Exception

<?php

if (!hasRight('sysinfo', true)) {
    throw new Exception('{{401 - Accès non autorisé}}');
}
?>
<iframe id="frame_sysinfo" src="<?php 
echo jeedom::getCurrentSysInfoFolder();
?>
/index.php" style="width : 100%;height : 1200px;border : none;"></iframe>

<script>
  var hWindow = $(window).height() - $('header').height() - $('footer').height() - 50;
  $('#frame_sysinfo').height(hWindow);
</script>
开发者ID:GaelGRIFFON,项目名称:core,代码行数:15,代码来源:sysinfo.php

示例2: mkdir

 if (!file_exists($backup_dir)) {
     mkdir($backup_dir, 0770, true);
 }
 if (!is_writable($backup_dir)) {
     throw new Exception(__('Le dossier des sauvegardes n\'est pas accessible en écriture. Vérifiez les droits : ', __FILE__) . $backup_dir);
 }
 try {
     echo __("Mise à plat des droits...", __FILE__);
     jeedom::cleanFileSytemRight();
     echo __("OK\n", __FILE__);
 } catch (Exception $e) {
     echo __('***ERREUR*** ', __FILE__) . $e->getMessage();
 }
 $bakcup_name = 'backup-' . jeedom::version() . '-' . date("Y-m-d-H\\hi") . '.tar.gz';
 echo __('Sauvegarde des fichiers...', __FILE__);
 $exclude = array('tmp', 'backup', 'log', 'ngrok', '.git', realpath(dirname(__FILE__) . '/../core/nodeJS/node_modules'), realpath(dirname(__FILE__) . '/../doc'), realpath(dirname(__FILE__) . '/../core/img'), str_replace('/', '', jeedom::getCurrentSysInfoFolder()), str_replace('/', '', jeedom::getCurrentAdminerFolder()));
 if (strpos('/', config::byKey('backup::path')) === false) {
     $exclude[] = config::byKey('backup::path');
 }
 foreach (plugin::listPlugin() as $plugin) {
     if (!$plugin->isActive()) {
         $exclude[] = realpath(dirname(__FILE__) . '/../plugins/' . $plugin->getId());
     } else {
         $exclude[] = realpath(dirname(__FILE__) . '/../plugins/' . $plugin->getId() . '/doc/fr_FR');
         $exclude[] = realpath(dirname(__FILE__) . '/../plugins/' . $plugin->getId() . '/doc/us_US');
         foreach (ls(dirname(__FILE__) . '/../plugins/' . $plugin->getId() . '/doc/images', '*') as $file) {
             if (strpos($file, 'icon') === false) {
                 $exclude[] = realpath(dirname(__FILE__) . '/../plugins/' . $plugin->getId() . '/doc/images/' . $file);
             }
         }
     }
开发者ID:GaelGRIFFON,项目名称:core,代码行数:31,代码来源:backup.php


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