Skip to content

Instantly share code, notes, and snippets.

@iboved
Created February 7, 2018 15:07
Show Gist options
  • Save iboved/f23122a0e458c23f28c064c68b782e19 to your computer and use it in GitHub Desktop.
Save iboved/f23122a0e458c23f28c064c68b782e19 to your computer and use it in GitHub Desktop.
<?php namespace Octobase\Advertising;
use Backend;
use Octobase\Advertising\Controllers\Banners;
use System\Classes\PluginBase;
/**
* Advertising Plugin Information File
*/
class Plugin extends PluginBase
{
public function boot() {
Banners::extend(function ($controller) {
$controller->listConfig = 'config_list_another.yaml';
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment