b0y-101 Mini Shell


Current Path : E:/www2/kidsbangna/wp-content/plugins/ninja-tables/app/Hooks/Handlers/
File Upload :
Current File : E:/www2/kidsbangna/wp-content/plugins/ninja-tables/app/Hooks/Handlers/CPTHandler.php

<?php

namespace NinjaTables\App\Hooks\Handlers;

use NinjaTables\App\App;
use NinjaTables\App\CPT\NinjaTable;

class CPTHandler
{
    /*
    * Add all Custom Post Type classes here to
    * register all of your Custom Post Types.
    */

    protected $customPostTypes = [
        NinjaTable::class
    ];

    public function registerPostTypes()
    {
        foreach ($this->customPostTypes as $cpt) {
            App::make($cpt)->registerPostType();
        }
    }
}

Copyright © 2019 by b0y-101