Check for ImageMagick and for GIF support
This commit is contained in:
parent
a1da54834b
commit
16123f5ad5
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
require_once "include/Photo.php";
|
||||||
|
|
||||||
$install_wizard_pass=1;
|
$install_wizard_pass=1;
|
||||||
|
|
||||||
|
@ -177,6 +178,8 @@ function install_content(&$a) {
|
||||||
|
|
||||||
check_funcs($checks);
|
check_funcs($checks);
|
||||||
|
|
||||||
|
check_imagik($checks);
|
||||||
|
|
||||||
check_htconfig($checks);
|
check_htconfig($checks);
|
||||||
|
|
||||||
check_smarty3($checks);
|
check_smarty3($checks);
|
||||||
|
@ -490,6 +493,23 @@ function check_htaccess(&$checks) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function check_imagik(&$checks) {
|
||||||
|
$imagick = false;
|
||||||
|
$gif = false;
|
||||||
|
|
||||||
|
if (class_exists('Imagick')) {
|
||||||
|
$imagick = true;
|
||||||
|
$supported = Photo::supportedTypes();
|
||||||
|
if (array_key_exists('image/gif', $supported)) {
|
||||||
|
$gif = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
|
||||||
|
if ($imagick) {
|
||||||
|
check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function manual_config(&$a) {
|
function manual_config(&$a) {
|
||||||
$data = htmlentities($a->data['txt'],ENT_COMPAT,'UTF-8');
|
$data = htmlentities($a->data['txt'],ENT_COMPAT,'UTF-8');
|
||||||
|
|
Loading…
Reference in a new issue