-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.payment_nextpay.php
36 lines (31 loc) · 1.19 KB
/
script.payment_nextpay.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Created by PhpStorm.
* User: mohsen
* Date: 5/8/16
* Time: 2:36 PM
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
class plgJ2StorePayment_nextpayInstallerScript {
function preflight( $type, $parent ) {
if(!JComponentHelper::isEnabled('com_j2store')) {
Jerror::raiseWarning(null, 'کامپوننت j2store نصب نیست. لطفا قبل از نصب این پلاگین j2store را نصب کنید!');
return false;
}
jimport('joomla.filesystem.file');
$version_file = JPATH_ADMINISTRATOR.'/components/com_j2store/version.php';
if (JFile::exists ( $version_file )) {
require_once($version_file);
// abort if the current J2Store release is older
if (version_compare ( J2STORE_VERSION, '2.7.3', 'lt' )) {
Jerror::raiseWarning ( null, 'شما در حال استفاده از یک نسخه قدیمی از j2store هستید!' );
return false;
}
} else {
Jerror::raiseWarning ( null, 'مطمین شوید که j2store را درست نصب کرده اید!' );
return false;
}
}
}
?>