1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 07:36:32 +02:00

Issue #73 Deprecated message added to old arrayStorage class, and created a new one in core-functions.php

Use: e107::arrayStorage->read() and e107::arrayStorage->write(); (BC aliases added also)
This commit is contained in:
Cameron
2013-02-26 19:12:17 -08:00
parent 4941a1156d
commit 117d0e8deb
3 changed files with 90 additions and 2 deletions

View File

@@ -22,6 +22,13 @@ if (!defined('e107_INIT')) { exit; }
*/
class ArrayData {
function __construct()
{
// DO Not translate - debug info only.
e107::getMessage()->addDebug("Deprecated ArrayStorage Class in use. Please remove references to arraystorage_class.php and use e107::getArrayStorage(); instead.");
}
/**
* Return a string containg exported array data.
*