62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to a commercial license from Common-Services Co., Ltd.
|
|
* Use, copy, modification or distribution of this source file without written
|
|
* license agreement from the SARL SMC is strictly forbidden.
|
|
* In order to obtain a license, please contact us: contact@common-services.com
|
|
* ...........................................................................
|
|
* INFORMATION SUR LA LICENCE D'UTILISATION
|
|
*
|
|
* L'utilisation de ce fichier source est soumise a une licence commerciale
|
|
* concedee par la societe Common-Services Co., Ltd.
|
|
* Toute utilisation, reproduction, modification ou distribution du present
|
|
* fichier source sans contrat de licence ecrit de la part de la Common-Services Co. Ltd. est
|
|
* expressement interdite.
|
|
* Pour obtenir une licence, veuillez contacter Common-Services Co., Ltd. a l'adresse: contact@common-services.com
|
|
* ...........................................................................
|
|
*
|
|
* @package soflexibilite
|
|
* @author Alexandre D.
|
|
* @copyright Copyright (c) 2011-2015 Common Services Co Ltd - 90/25 Sukhumvit 81 - 10260 Bangkok - Thailand
|
|
* @license Commercial license
|
|
* Support by mail : support.soflexibilite@common-services.com
|
|
*/
|
|
|
|
class SoFlexibiliteFileSystem
|
|
{
|
|
|
|
public static $errors = array();
|
|
|
|
public static function isDirWritable($path)
|
|
{
|
|
$path = rtrim($path, '/\\');
|
|
|
|
$testfile = sprintf('%s%stestfile_%s.chk', $path, DIRECTORY_SEPARATOR, uniqid());
|
|
$timestamp = time();
|
|
|
|
if (@file_put_contents($testfile, $timestamp)) {
|
|
$result = trim(@SoFlexibiliteTools::fileGetContents($testfile));
|
|
@unlink($testfile);
|
|
|
|
if ((int)$result == (int)$timestamp) {
|
|
return (true);
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public static function copyColissimoLogo($source, $dest)
|
|
{
|
|
if (method_exists('Tools', 'copy') && !Tools::copy($source, $dest)) {
|
|
return false;
|
|
} elseif (!method_exists('Tools', 'copy') && !SoFlexibiliteTools::copy($source, $dest)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} |