Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
9dd73d8b
Commit
9dd73d8b
authored
Apr 11, 2019
by
Côme Chilliet
Browse files
🚜
fix(core) Rename simpleTab to SimpleTab to match naming rule
issue
#5980
parent
6042b711
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/simpleplugin/class_simplePlugin.inc
View file @
9dd73d8b
...
...
@@ -27,7 +27,7 @@
/*! \brief This class is made for easy plugin creation for editing LDAP attributes
*
*/
class
simplePlugin
implements
s
impleTab
class
simplePlugin
implements
S
impleTab
{
/*! \brief This attribute store all information about attributes */
public
$attributesInfo
;
...
...
include/simpleplugin/class_simpleTabs.inc
View file @
9dd73d8b
...
...
@@ -76,7 +76,7 @@ class simpleTabs
if
(
!
plugin_available
(
$tab
[
'CLASS'
]))
{
continue
;
}
if
(
!
is_a
(
$tab
[
'CLASS'
],
'
s
impleTab'
,
TRUE
))
{
if
(
!
is_a
(
$tab
[
'CLASS'
],
'
S
impleTab'
,
TRUE
))
{
throw
new
FusionDirectoryException
(
'Invalid class '
.
$tab
[
'CLASS'
]
.
' found in '
.
$type
.
' tab list'
);
}
...
...
include/simpleplugin/interface_
s
impleTab.inc
→
include/simpleplugin/interface_
S
impleTab.inc
View file @
9dd73d8b
...
...
@@ -20,14 +20,14 @@
*/
/*!
* \file interface_
s
impleTab.inc
* Source code for the interface
s
impleTab
* \file interface_
S
impleTab.inc
* Source code for the interface
S
impleTab
*/
/*! \brief This interface is implemented by classes intended to be used as tabs, mainly simplePlugin itself.
*/
interface
s
impleTab
interface
S
impleTab
{
/*
* Public vars expected as well by classes implementing this interface:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment