wp_back/wp-content/plugins/smart-slider-3/Nextend/Framework/Pattern/PluggableTrait.php

15 lines
220 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?php
namespace Nextend\Framework\Pattern;
use Nextend\Framework\Plugin;
trait PluggableTrait {
protected function makePluggable($id) {
Plugin::doAction('PluggableFactory' . $id, array($this));
}
}