how i can create class with this call syntax
oop->open(file)->select_row(3)->update('this is row3')->save();
an other question if i have class and i wont make plugin for it , every plugin in each php file separate... my Ex.
class Foo {
function foo1() {
print 'foo foo';
}
}
function plugin_foo(){
print 'this from plugin_foo';
}
$foo = new Foo;
print $foo->foo1()->plugin_foo()
oop->open(file)->select_row(3)->update('this is row3')->save();
an other question if i have class and i wont make plugin for it , every plugin in each php file separate... my Ex.
class Foo {
function foo1() {
print 'foo foo';
}
}
function plugin_foo(){
print 'this from plugin_foo';
}
$foo = new Foo;
print $foo->foo1()->plugin_foo()