當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。