 
            class Model_Foo extends Orm\Model {
  private/protected/public static $foo = 42;
  public static function equal_to_foo($n)
  {
      return $n == Model_Foo::foo;
  }
}
Model_Foo::foo;without getting an unknown class variable error. So I'm just wondering what the correct/preferred way of declaring/getting static instance variables in a model
Jelmer Schreuder wrote on Monday 3rd of October 2011:That's a pretty basic mistake...[/url]
It looks like you're new here. If you want to get involved, click one of these buttons!