Skip to content

Instantly share code, notes, and snippets.

@unr
Created June 19, 2014 15:29
Show Gist options
  • Select an option

  • Save unr/0f94785fe1b0676e6a59 to your computer and use it in GitHub Desktop.

Select an option

Save unr/0f94785fe1b0676e6a59 to your computer and use it in GitHub Desktop.
Example of my AppModel i18n issue
<?php
App::uses('Date', 'Model');
class AppController extends Controller {
// Rest of my app stuff
}
<?php
class Date {
public $dates = array();
public function getDate($date_key) {
return self::$dates[$date_key];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment