mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
11 lines
361 B
PHP
11 lines
361 B
PHP
<?php
|
|
// Ensure compatibility with PHP 7.2 ("object" is a reserved word),
|
|
// with SilverStripe 3.6 (using Object) and SilverStripe 3.7 (using SS_Object)
|
|
if (!class_exists('SS_Object')) class_alias('Object', 'SS_Object');
|
|
|
|
if (!defined('USERFORMS_DIR')) {
|
|
define('USERFORMS_DIR', basename(__DIR__));
|
|
}
|
|
|
|
Deprecation::notification_version('3.0', 'userforms');
|