parent
06b5f5e9e2
commit
d265a83c34
@ -0,0 +1,31 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
/** |
||||
* Class MaintenanceModePlugin |
||||
*/ |
||||
class MaintenanceModePlugin extends Plugin |
||||
{ |
||||
/** |
||||
* @return EditHtaccessPlugin |
||||
*/ |
||||
public static function create() |
||||
{ |
||||
static $result = null; |
||||
return $result ? $result : $result = new self(); |
||||
} |
||||
|
||||
/** |
||||
* |
||||
*/ |
||||
protected function __construct() |
||||
{ |
||||
parent::__construct( |
||||
'0.1', |
||||
'Julio Montoya', |
||||
array( |
||||
'tool_enable' => 'boolean' |
||||
) |
||||
); |
||||
} |
||||
} |
@ -0,0 +1,15 @@ |
||||
<?php |
||||
|
||||
$strings['plugin_title'] = "Maintenance mode"; |
||||
$strings['plugin_comment'] = "Put chamilo in maintenance mode"; |
||||
$strings['tool_enable'] = 'Enable plugin'; |
||||
|
||||
$strings['IPAdmin'] = "Admin's IP"; |
||||
$strings['TheMaintenanceModeIsOff'] = "Maintenance mode is off"; |
||||
$strings['TheMaintenanceModeIsOn'] = "Maintenance mode is on"; |
||||
|
||||
$strings['IPAdminDescription'] = "The admin with this IP will only have access to the platform."; |
||||
$strings['MaintenanceFileNotPresent'] = "Can't create file: %s. Check permissions in the root folder"; |
||||
|
||||
|
||||
|
@ -0,0 +1,14 @@ |
||||
<?php |
||||
|
||||
$strings['plugin_title'] = "Maintenance mode"; |
||||
$strings['plugin_comment'] = "Put chamilo in maintenance mode"; |
||||
$strings['tool_enable'] = 'Enable plugin'; |
||||
|
||||
$strings['IPAdmin'] = "IP de l'administrateur"; |
||||
$strings['IPAdminDescription'] = "L'administrateur utilisant. cette adresse IP conservera les droits d'accès à la plateforme. L'adresse IP indiquée est l'adresse détectée automatiquement par Chamilo par rapport à votre visite actuelle. Elle est également utilisée par défaut dans le bloc ci-dessous."; |
||||
|
||||
$strings['MaintenanceFileNotPresent'] = "Le fichier %s à la racine de Chamilo n'est pas présent et n'a pas pu être créé. Veuillez créer le fichier manuellement et donner les permissions au serveur web de le modifier, par exemple en utilisant la commande 'chown www-data maintenance.html"; |
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in new issue