Created
April 18, 2013 17:29
-
-
Save amphibian/5414609 to your computer and use it in GitHub Desktop.
Quick example of one way to deal with Localize class methods which will be deprecated in ExpressionEngine 2.6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Backwards-compatibility with pre-2.6 Localize class | |
$format_date_fn = (version_compare(APP_VER, '2.6', '>=')) ? 'format_date' : 'decode_date'; | |
echo $this->EE->localize->{$format_date_fn}('%Y-%m-%d', $this->EE->localize->now); | |
// 2013-04-18 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment