本文整理汇总了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>
示例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);
}
}
}