Welcome Guest, Not a member yet? Register   Sign In
wrapper method
#3

(This post was last modified: 09-26-2018, 06:15 AM by dave friend.)

Super easy.

PHP Code:
public function method()
{
 
   echo "in method()\n";
 
   $this->render();


Or if you don't want method() calling render() directly

PHP Code:
class Example extends MY_Controller
{
    public function 
index()
    {
         
$this->method();
         
$this->render();   
    }

    public function 
method()
    {
        echo 
"in method()\n";
    }

Reply


Messages In This Thread
wrapper method - by blinkofaneye - 09-25-2018, 11:39 PM
RE: wrapper method - by ignitedcms - 09-26-2018, 03:56 AM
RE: wrapper method - by dave friend - 09-26-2018, 06:08 AM
RE: wrapper method - by blinkofaneye - 09-26-2018, 10:45 PM
RE: wrapper method - by InsiteFX - 09-27-2018, 03:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB