Add @package PHPDoc tags, delete top-level @author PHPDoc tags

This commit is contained in:
Ben Goldsworthy 2021-02-21 18:40:04 +00:00
parent bb3b555148
commit 27abf83394
11 changed files with 14 additions and 14 deletions

View file

@ -3,7 +3,7 @@
* Includes the Plugin Constants class to load all Plugin constant vars like Plugin name, etc. * Includes the Plugin Constants class to load all Plugin constant vars like Plugin name, etc.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 12.09.14 10:56 * @since 1.5.0 12.09.14 10:56
* *
* Edited for: * Edited for:

View file

@ -3,7 +3,7 @@
* Includes the Convert Class. * Includes the Convert Class.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 12.09.14 10:56 * @since 1.5.0 12.09.14 10:56
* *
* Edited: * Edited:

View file

@ -3,7 +3,7 @@
* Handles all WordPress hooks of this Plugin. * Handles all WordPress hooks of this Plugin.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 12.09.14 10:56 * @since 1.5.0 12.09.14 10:56
* *
* Edited: * Edited:

View file

@ -3,7 +3,7 @@
* Includes the main Class of the Plugin. * Includes the main Class of the Plugin.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 12.09.14 10:56 * @since 1.5.0 12.09.14 10:56
* *
* @lastmodified 2021-02-19T2031+0100 * @lastmodified 2021-02-19T2031+0100

View file

@ -3,7 +3,7 @@
* Loads text domain of current or default language for localization. * Loads text domain of current or default language for localization.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 14.09.14 17:47 * @since 1.5.0 14.09.14 17:47
* *
* @lastmodified 2021-02-18T2028+0100 * @lastmodified 2021-02-18T2028+0100

View file

@ -3,7 +3,7 @@
* Includes the Settings class to handle all Plugin settings. * Includes the Settings class to handle all Plugin settings.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 14.09.14 10:43 * @since 1.5.0 14.09.14 10:43
* *
* @lastmodified 2021-02-19T1608+0100 * @lastmodified 2021-02-19T1608+0100

View file

@ -3,7 +3,7 @@
* Includes the core function of the Plugin - Search and Replace the Footnotes. * Includes the core function of the Plugin - Search and Replace the Footnotes.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 * @since 1.5.0
* *
* @lastmodified 2021-02-20T0438+0100 * @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'); document.get_element_by_id(footnote_tooltip_id).class_list.add('hidden');
} }
</script> </script>
<?php <?php
}; };
} }

View file

@ -3,7 +3,7 @@
* Includes the Template Engine to load and handle all Template files of the Plugin. * Includes the Template Engine to load and handle all Template files of the Plugin.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 14.09.14 10:58 * @since 1.5.0 14.09.14 10:58
* *
* @lastmodified 2021-02-18T2024+0100 * @lastmodified 2021-02-18T2024+0100

View file

@ -3,7 +3,7 @@
* Widget base. * Widget base.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 * @since 1.5.0
* @date 14.09.14 14:30 * @date 14.09.14 14:30
* *
@ -21,7 +21,7 @@
* @author Stefan Herndler * @author Stefan Herndler
* @since 1.5.0 * @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. * Returns an unique ID as string used for the Widget Base ID.

View file

@ -3,7 +3,7 @@
* Includes the Plugin Widget to put the Reference Container to the Widget area. * Includes the Plugin Widget to put the Reference Container to the Widget area.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 14.09.14 14:26 * @since 1.5.0 14.09.14 14:26
* *
* Edited 2.2.0 2020-12-12T2131+0100 * Edited 2.2.0 2020-12-12T2131+0100
@ -16,7 +16,7 @@
* @author Stefan Herndler * @author Stefan Herndler
* @since 1.5.0 * @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. * Returns an unique ID as string used for the Widget Base ID.

View file

@ -3,7 +3,7 @@
* Includes the Class to handle the WYSIWYG-Buttons. * Includes the Class to handle the WYSIWYG-Buttons.
* *
* @filesource * @filesource
* @author Stefan Herndler * @package footnotes
* @since 1.5.0 14.09.14 17:30 * @since 1.5.0 14.09.14 17:30
*/ */