Skip to content

Instantly share code, notes, and snippets.

@amphibian
Created April 18, 2013 17:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amphibian/5414609 to your computer and use it in GitHub Desktop.
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
<?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