Skip to content

Instantly share code, notes, and snippets.

@ameliaikeda
Created May 15, 2014 20:34
Show Gist options
  • Select an option

  • Save ameliaikeda/93a6103737dbb0da63dd to your computer and use it in GitHub Desktop.

Select an option

Save ameliaikeda/93a6103737dbb0da63dd to your computer and use it in GitHub Desktop.
<?php
class Theme extends Eloquent {
protected $default = 1;
public static function theme($id) {
$theme = static::find($id);
if (! $theme)
return static::find($this->default);
return $theme;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment