Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-basic-requirements
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-basic-requirements
Commits
57d76f5a
Commit
57d76f5a
authored
6 years ago
by
Dyszczo
Browse files
Options
Downloads
Plain Diff
Merge branch 'bugfix/interface-exists' into 'master'
interface_exists on interface See merge request
!5
parents
b6395d2f
fbc5682c
No related branches found
Branches containing commit
Tags
1.0.2
1.0.5
2.0
2.1
Tags containing commit
1 merge request
!5
interface_exists on interface
Pipeline
#8309
failed with stages
in 3 minutes and 58 seconds
Changes
3
Pipelines
11
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Basic_Requirement_Checker.php
+1
-1
1 addition, 1 deletion
src/Basic_Requirement_Checker.php
src/Plugin/Has_Plugin_Info.php
+1
-1
1 addition, 1 deletion
src/Plugin/Has_Plugin_Info.php
src/Plugin/Plugin_Info.php
+3
-3
3 additions, 3 deletions
src/Plugin/Plugin_Info.php
with
5 additions
and
5 deletions
src/Basic_Requirement_Checker.php
+
1
−
1
View file @
57d76f5a
<?php
if
(
!
class
_exists
(
'WPDesk_Translable'
)
)
{
if
(
!
interface
_exists
(
'WPDesk_Translable'
)
)
{
require_once
'Translable.php'
;
}
...
...
This diff is collapsed.
Click to expand it.
src/Plugin/Has_Plugin_Info.php
+
1
−
1
View file @
57d76f5a
<?php
if
(
!
class
_exists
(
'WPDesk_Translable'
)
)
{
if
(
!
interface
_exists
(
'WPDesk_Translable'
)
)
{
require_once
dirname
(
__FILE__
)
.
'/../Translable.php'
;
}
...
...
This diff is collapsed.
Click to expand it.
src/Plugin/Plugin_Info.php
+
3
−
3
View file @
57d76f5a
<?php
if
(
!
class
_exists
(
'WPDesk_Translable'
)
)
{
if
(
!
interface
_exists
(
'WPDesk_Translable'
)
)
{
require_once
dirname
(
__FILE__
)
.
'/../Translable.php'
;
}
if
(
!
class_exists
(
'WPDesk_Buildable'
)
)
{
if
(
!
class_exists
(
'WPDesk_Buildable'
)
)
{
require_once
dirname
(
__FILE__
)
.
'/../Buildable.php'
;
}
if
(
!
class_exists
(
'WPDesk_Has_Plugin_Info'
)
)
{
if
(
!
class_exists
(
'WPDesk_Has_Plugin_Info'
)
)
{
require_once
'Has_Plugin_Info.php'
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment