PHP code example of mobi-market / hook

1. Go to this page and download the library: Download mobi-market/hook library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mobi-market / hook example snippets


$user = new User();
$user = Hook::get('fillUser', [$user], function($user){
    return $user;
});

Hook::listen('fillUser', function ($callback, $output, $user) {
    if (empty($output))
    {
      $output = $user;
    }
    $output->profileImage = ProfileImage::getForUser($user->id);
    return $output;
}, 10);


$initialOutput='test string';

\Hook::get('testing',['other string'],function($otherString){
    return $otherString;
},$initialOutput)

// and later ...

Hook::listen('testing', function ($callback, $output, $otherString) {
    if ($output==='test string') {
        $output="{$output} yeeeaaaayyy!";
    }
    if ($otherString==='other_string') {
        // other string is good too
    }
    return $output; // 'test string yeeeaaaayyy!'
});

 Hook::listen('template.hookName', function ($callback, $output, $variables) {
   return view('test.button');
 });

Hook::listen('template.hookName', function ($callback, $output, $variables) {
  return "<div class=\"alert alert-success\">$output</div>";
});

Hook::stop();

Hook::mock('hookName','returnValue');
bash
php artisan hook:list