Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-builder
Merge requests
!15
added method: get_hookable_instance_by_class_name
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
added method: get_hookable_instance_by_class_name
feature/get-hookable
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Krzysztof Dyszczyk
requested to merge
feature/get-hookable
into
master
6 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
06214b90
2 commits,
6 years ago
2 files
+
25
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
src/Plugin/HookableCollection.php
+
9
−
0
View file @ 06214b90
Edit in single-file editor
Open in Web IDE
Show full file
@@ -11,5 +11,14 @@ interface HookableCollection extends Hookable {
*/
public
function
add_hookable
(
Hookable
$hookable_object
);
/**
* Get hookable instance.
*
* @param string $class_name Class name.
*
* @return false|Hookable
*/
public
function
get_hookable_instance_by_class_name
(
$class_name
);
}
Loading