Add @package PHPDoc tags, delete top-level @author PHPDoc tags
This commit is contained in:
parent
bb3b555148
commit
27abf83394
11 changed files with 14 additions and 14 deletions
|
@ -3,7 +3,7 @@
|
|||
* Includes the Plugin Constants class to load all Plugin constant vars like Plugin name, etc.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 12.09.14 10:56
|
||||
*
|
||||
* Edited for:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the Convert Class.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 12.09.14 10:56
|
||||
*
|
||||
* Edited:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Handles all WordPress hooks of this Plugin.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 12.09.14 10:56
|
||||
*
|
||||
* Edited:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the main Class of the Plugin.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 12.09.14 10:56
|
||||
*
|
||||
* @lastmodified 2021-02-19T2031+0100
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Loads text domain of current or default language for localization.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 14.09.14 17:47
|
||||
*
|
||||
* @lastmodified 2021-02-18T2028+0100
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the Settings class to handle all Plugin settings.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 14.09.14 10:43
|
||||
*
|
||||
* @lastmodified 2021-02-19T1608+0100
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the core function of the Plugin - Search and Replace the Footnotes.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0
|
||||
*
|
||||
* @lastmodified 2021-02-20T0438+0100
|
||||
|
@ -929,7 +929,7 @@ class MCI_Footnotes_Task {
|
|||
document.get_element_by_id(footnote_tooltip_id).class_list.add('hidden');
|
||||
}
|
||||
</script>
|
||||
<?php
|
||||
<?php
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the Template Engine to load and handle all Template files of the Plugin.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 14.09.14 10:58
|
||||
*
|
||||
* @lastmodified 2021-02-18T2024+0100
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Widget base.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0
|
||||
* @date 14.09.14 14:30
|
||||
*
|
||||
|
@ -21,7 +21,7 @@
|
|||
* @author Stefan Herndler
|
||||
* @since 1.5.0
|
||||
*/
|
||||
abstract class MCI_Footnotes_WidgetBase extends WP_Widget {
|
||||
abstract class MCI_Footnotes_Widget_Base extends WP_Widget {
|
||||
|
||||
/**
|
||||
* Returns an unique ID as string used for the Widget Base ID.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the Plugin Widget to put the Reference Container to the Widget area.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 14.09.14 14:26
|
||||
*
|
||||
* Edited 2.2.0 2020-12-12T2131+0100
|
||||
|
@ -16,7 +16,7 @@
|
|||
* @author Stefan Herndler
|
||||
* @since 1.5.0
|
||||
*/
|
||||
class MCI_Footnotes_Widget_ReferenceContainer extends MCI_Footnotes_WidgetBase {
|
||||
class MCI_Footnotes_Widget_ReferenceContainer extends MCI_Footnotes_Widget_Base {
|
||||
|
||||
/**
|
||||
* Returns an unique ID as string used for the Widget Base ID.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Includes the Class to handle the WYSIWYG-Buttons.
|
||||
*
|
||||
* @filesource
|
||||
* @author Stefan Herndler
|
||||
* @package footnotes
|
||||
* @since 1.5.0 14.09.14 17:30
|
||||
*/
|
||||
|
||||
|
|
Reference in a new issue