Skip to content
Snippets Groups Projects
Select Git revision
  • 70076b7a3f824e12aeb8bd37f70a8c34ba432703
  • master default protected
  • fix/deprecated_functions
  • devel
  • feat/translations
  • feat/upgrade_to_pro_url
  • feat/lang
  • bugfix/require-interface
  • bugfix/require-once-error
  • feature/activation-hooks
  • feature/template-loader
  • feature/template-renderer
  • feature/plugin-activation
  • feature/hookable-object
  • feature/builder-pattern
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 2.0.0-beta1
  • 1.4.4
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1
  • 1.0
32 results

HookableCollection.php

Blame
  • HookableCollection.php 251 B
    <?php
    
    namespace WPDesk\PluginBuilder\Plugin;
    
    interface HookableCollection extends Hookable {
    
    	/**
    	 * Add hookable object.
    	 *
    	 * @param Hookable $hookable_object Hookable object to add.
    	 */
    	public function add_hookable( $hookable_object );
    
    }