Skip to content
Snippets Groups Projects
Select Git revision
  • 3b88833605add9208cd28e8fb9125eb41a68c542
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

input-submit.php

Blame
  • HookablePluginDependant.php 328 B
    <?php
    
    namespace WPDesk\PluginBuilder\Plugin;
    
    interface HookablePluginDependant extends Hookable {
    
    	/**
    	 * Set Plugin.
    	 *
    	 * @param AbstractPlugin $plugin Plugin.
    	 *
    	 * @return null
    	 */
    	public function set_plugin( $plugin );
    
    	/**
    	 * Get plugin.
    	 *
    	 * @return AbstractPlugin.
    	 */
    	public function get_plugin();
    
    }