Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Added test for intl php extension as it is used to localize month nam…
Browse files Browse the repository at this point in the history
…es (see IntlDateFormatter in AJXP_Utils::relativeDate)
  • Loading branch information
bLoginow committed Apr 3, 2016
1 parent b341660 commit 81d9fdc
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions core/src/core/tests/test.PHP_INTL.php
@@ -0,0 +1,46 @@
<?php
/*
* Copyright 2007-2016 Charles du Jeu - Abstrium SAS <team (at) pyd.io>
* This file is part of Pydio.
*
* Pydio is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <http://pyd.io/>.
*/
defined('AJXP_EXEC') or die( 'Access not allowed');
require_once('../classes/class.AbstractTest.php');

/**
* Check that intl is enabled
* @package AjaXplorer
* @subpackage Tests
*/
class PHP_INTL extends AbstractTest
{
public function __construct() { parent::__construct("PHP INTL extension", "Pydio used intl to localize month names."); }
public function doTest()
{
$this->failedLevel = "warning";

if (extension_loaded('intl')) {
$this->failedInfo = "PHP INTL extension detected. Month names can be localized depending on the users language.";
$this->testedParams["PHP INTL extension loaded"] = "Yes";
return TRUE;
} else {
$this->failedInfo = "PHP INTL extension missing. English month names will be used for all languages.";
$this->testedParams["PHP INTL extension loaded"] = "No";
return FALSE;
}
}
}

0 comments on commit 81d9fdc

Please sign in to comment.