ci: improve release process, clean up and re-org repo, add automated minification (#143)
* ci: update scripts * release 2.7.1 * remove tracked stylesheets * docs: revert stable tag to 2.7.0 * chore: move Plugin source into own dir * docs: delete info texts These can now be found in the [project wiki][wiki]. [wiki]: https://github.com/markcheret/footnotes/wiki * docs: tweak contributing guide * ci: reflect new directory structure * chore: update gitignore * chore: reflect new dir structure * docs: update documentation * build(linting): add Husky hooks, Markdown linting, lint all MD files * fix pre-push command * fix pre-push command * build: add stylesheet, JS minification * ci: add linting steps * ci: comment out CSS linting step (that's going to be a whole *thing*) * ci: minify all JS files * ci: call correct JS file * chore: lint * ci: fix PHP linting commands * chore: increment version constant string * ci: concat AMP stylesheets * ci: improve build scripts * chore: add assets dir
|
@ -1,4 +1,5 @@
|
|||
# A set of files you probably don't want in your WordPress.org distribution
|
||||
|
||||
.distignore
|
||||
.editorconfig
|
||||
.git
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
dist/
|
||||
docs/
|
||||
vendor/
|
||||
node_modules/
|
||||
tmp/
|
||||
*.min.js
|
||||
jquery.tools.js
|
||||
|
|
8
.github/workflows/php.yml
vendored
|
@ -34,10 +34,12 @@ jobs:
|
|||
|
||||
- name: Lint JS code
|
||||
run: composer run format:js:fix && composer run lint:js
|
||||
|
||||
# TODO: Fix CSS errors
|
||||
#- name: Format and lint CSS code
|
||||
|
||||
#- name: Lint stylesheets
|
||||
# run: composer run lint:css
|
||||
|
||||
- name: Lint Markdown files
|
||||
run: composer run lint:md
|
||||
|
||||
# TODO: Add tests
|
||||
# - name: Run test suite
|
||||
|
|
2
.github/workflows/release-handler.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
|
||||
- name: Build Plugin
|
||||
run: |
|
||||
composer run build -- -y
|
||||
composer run build
|
||||
|
||||
- name: Rename dist/ folder
|
||||
run: |
|
||||
|
|
103
.gitignore
vendored
|
@ -1,8 +1,99 @@
|
|||
.phpdoc/
|
||||
vendor/
|
||||
node_modules/
|
||||
dist/
|
||||
tmp/
|
||||
# -------------------------
|
||||
# BEGIN Default WordPress Project Ignores
|
||||
# Adapted from: https://salferrarello.com/wordpress-gitignore/
|
||||
# -------------------------
|
||||
|
||||
# Ignore all files and directories starting with `.` or `~`.
|
||||
.*
|
||||
~*
|
||||
|
||||
# Ignore Node and Composer dependency directories.
|
||||
node_modules/
|
||||
vendor/
|
||||
|
||||
# Ignore OS-generated files.
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# Ignore Editor files.
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
*.komodoproject
|
||||
|
||||
# Ignore log files and databases.
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
||||
# Ignore compiled files.
|
||||
*.com
|
||||
*.class
|
||||
*.dll
|
||||
*.exe
|
||||
*.o
|
||||
*.so
|
||||
|
||||
# Ignore packaged files.
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
# Ignore distribution process files, if they are ever leftover.
|
||||
|
||||
dist/
|
||||
svn-tmp/
|
||||
*.min.*
|
||||
|
||||
# Ignore temporary files.
|
||||
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
authors.txt
|
||||
|
||||
# -------------------------
|
||||
# BEGIN Whitelisted Files
|
||||
# -------------------------
|
||||
|
||||
# Track these version control files, if they exist.
|
||||
!.gitignore
|
||||
!.github/
|
||||
|
||||
# Track these dependency tracking files, if they exist
|
||||
|
||||
!composer.json
|
||||
!composer-lock.json
|
||||
!package.json
|
||||
!package-lock.json
|
||||
|
||||
# Track these distribution ignore files, if they exist.
|
||||
|
||||
!.distignore
|
||||
|
||||
# Track these linter/formatter configuration files, if they exist.
|
||||
|
||||
!.editorconfig
|
||||
!.phpcs.xml.dist
|
||||
!.eslintrc.js
|
||||
!.eslintignore
|
||||
!.php-commitizen.php
|
||||
!.prettierignore
|
||||
!.prettierrc
|
||||
!.stylelintignore
|
||||
!.stylelintrc.json
|
||||
|
||||
# Track favicon files, if they exist.
|
||||
!android-chrome-*.png
|
||||
!apple-touch-icon*.png
|
||||
!browserconfig.xml
|
||||
!favicon*.png
|
||||
!favicon*.ico
|
||||
!manifest.json
|
||||
!mstile-*.png
|
||||
!safari-pinned-tab.svg
|
||||
!site.webmanifest
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
dist/
|
||||
docs/
|
||||
vendor/
|
||||
node_modules/
|
||||
tmp/
|
||||
*.min.js
|
||||
jquery.tools.js
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
dist/
|
||||
docs/
|
||||
vendor/
|
||||
node_modules/
|
||||
tmp/
|
||||
*.min.css
|
||||
|
|
1044
CHANGELOG.md
|
@ -116,7 +116,7 @@ the community.
|
|||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||
version 2.0, available at
|
||||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
||||
<https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.
|
||||
|
||||
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
||||
enforcement ladder](https://github.com/mozilla/diversity).
|
||||
|
@ -124,5 +124,5 @@ enforcement ladder](https://github.com/mozilla/diversity).
|
|||
[homepage]: https://www.contributor-covenant.org
|
||||
|
||||
For answers to common questions about this code of conduct, see the FAQ at
|
||||
https://www.contributor-covenant.org/faq. Translations are available at
|
||||
https://www.contributor-covenant.org/translations.
|
||||
<https://www.contributor-covenant.org/faq>. Translations are available at
|
||||
<https://www.contributor-covenant.org/translations>.
|
||||
|
|
|
@ -1,43 +1,50 @@
|
|||
# **footnotes** Contributing Guide
|
||||
|
||||
**footnotes** welcomes contributions!
|
||||
|
||||
Please follow these guidelines when contributing, as it will give your pull
|
||||
request the best chance of being accepted:
|
||||
## Code of Conduct
|
||||
|
||||
# Requesting Features/Reporting Bugs
|
||||
Please read and ensure that you adhere to the project's [Code of Conduct][coc].
|
||||
|
||||
- To request a new feature or to report a bug, create an [Issue][new-issue] and
|
||||
choose the correct template
|
||||
## Requesting Features/Reporting Bugs
|
||||
|
||||
# Contributing Code
|
||||
To request a new feature or to report a bug, create an [Issue][new-issue] and
|
||||
choose the correct template.
|
||||
|
||||
- **footnotes** uses [GitHub Flow][github-flow]
|
||||
- branch off of `main` to start developing (`git checkout -b <your branch>`)
|
||||
- ensure that your new branch has a descriptive name
|
||||
- create a remote copy of your new branch (`git push`)
|
||||
- create a draft [pull request][pull-request] to merge your branch with `main` —
|
||||
tag any related Issues, and if they are assigned to a Project board, this will
|
||||
automatically move them into the ‘In Progress’ bucket
|
||||
- when you think you're finished, un-draft your pull request — if the PR is
|
||||
## Contributing Code
|
||||
|
||||
- **footnotes** uses [GitHub Flow][github-flow];
|
||||
- branch off of `main` to start developing (`git checkout -b <your branch>`);
|
||||
- ensure that your new branch has a descriptive name;
|
||||
- create a remote copy of your new branch (`git push`);
|
||||
- create a draft [pull request][pull-request] to merge your branch with `main` —
|
||||
tag any related Issues, and if they are assigned to a Project board, this will
|
||||
automatically move them into the ‘In Progress’ bucket; and
|
||||
- when you think you're finished, un-draft your pull request — if the PR is
|
||||
assigned to a Project board, this will automatically move it and any related
|
||||
Issues into the ‘Review in progress’ bucket
|
||||
Issues into the ‘Review in progress’ bucket.
|
||||
|
||||
# Commits
|
||||
## Commits
|
||||
|
||||
- **footnotes** uses [Conventional Commits][conventional-commits]
|
||||
- we use [PHP Commitizen][php-commitizen] to automate this - use `composer commit`
|
||||
- keep individual commits as small as possible
|
||||
- **footnotes** uses the [Conventional Commits][conventional-commits] for
|
||||
commit message formatting;
|
||||
- we recommend using [Commitizen][commitizen] to automate this:
|
||||
- install it globally using `npm install -g commitizen`;
|
||||
- use `git cz` instead of `git commit`.
|
||||
- keep individual commits as small as possible.
|
||||
|
||||
# Versioning
|
||||
## Versioning
|
||||
|
||||
- **footnotes** uses [Semantic Versioning][semver]
|
||||
**footnotes** uses [WordPress Versioning][wpver].
|
||||
|
||||
# Translating
|
||||
## Translating
|
||||
|
||||
- Translations are welcome!
|
||||
Translations are welcome!
|
||||
|
||||
[coc]: https://github.com/markcheret/footnotes/blob/main/CODE_OF_CONDUCT.md
|
||||
[new-issue]: https://github.com/markcheret/footnotes/issues/new/choose
|
||||
[github-flow]: https://githubflow.github.io/
|
||||
[pull-request]: https://github.com/markcheret/footnotes/compare
|
||||
[conventional-commits]: https://www.conventionalcommits.org
|
||||
[php-commitizen]: https://github.com/conventional-commits/php-commitizen
|
||||
[semver]: https://semver.org/
|
||||
[commitizen]: https://www.npmjs.com/package/commitizen
|
||||
[wpver]: https://make.wordpress.org/core/handbook/about/release-cycle/version-numbering/
|
||||
|
|
77
README.md
|
@ -1,19 +1,23 @@
|
|||
# footnotes
|
||||
|
||||
<!-- markdownlint-disable MD013 -->
|
||||
![stable tag](https://img.shields.io/wordpress/plugin/v/footnotes?style=flat-square) ![WP rating](https://img.shields.io/wordpress/plugin/stars/footnotes?style=flat-square) ![Reqd PHP](https://img.shields.io/wordpress/plugin/required-php/footnotes?style=flat-square) ![Reqd WP](https://img.shields.io/wordpress/plugin/wp-version/footnotes?style=flat-square) ![WordPress Plugin: Tested WP Version](https://img.shields.io/wordpress/plugin/tested/footnotes?style=flat-square)
|
||||
|
||||
![GitHub contributors](https://img.shields.io/github/contributors/markcheret/footnotes?style=flat-square) ![GitHub commits since tagged version](https://img.shields.io/github/commits-since/markcheret/footnotes/2.7.0?style=flat-square) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/markcheret/footnotes?style=flat-square) ![issues](https://img.shields.io/github/issues/markcheret/footnotes?style=flat-square) ![PRs](https://img.shields.io/github/issues-pr/markcheret/footnotes?style=flat-square)
|
||||
|
||||
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/markcheret/footnotes?style=flat-square) [![OSSAR](https://github.com/markcheret/footnotes/actions/workflows/ossar-analysis.yml/badge.svg)](https://github.com/markcheret/footnotes/actions/workflows/ossar-analysis.yml) [![PHP Composer](https://github.com/markcheret/footnotes/actions/workflows/php.yml/badge.svg)](https://github.com/markcheret/footnotes/actions/workflows/php.yml)
|
||||
|
||||
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
|
||||
<!-- markdownlint-enable MD013 -->
|
||||
|
||||
![footnotes](https://raw.githubusercontent.com/markcheret/footnotes/main/img/footnotes.png)
|
||||
|
||||
**footnotes** aims to be the all-in-one solution for displaying an
|
||||
automatically-generated list of references on your Page or Post. The Plugin
|
||||
ships with a set of defaults while also empowering you to control how your
|
||||
**footnotes** aims to be the all-in-one solution for displaying an
|
||||
automatically-generated list of references on your Page or Post. The Plugin
|
||||
ships with a set of defaults while also empowering you to control how your
|
||||
footnotes will be displayed.
|
||||
|
||||
**footnotes** gives you the ability to display well-formatted footnotes on your
|
||||
**footnotes** gives you the ability to display well-formatted footnotes on your
|
||||
WordPress Pages and Posts — those footnotes we know from offline publishing.
|
||||
|
||||
Featured on [wpmudev][wpmudev] — cheers for the review, folks!
|
||||
|
@ -34,25 +38,25 @@ Featured on [wpmudev][wpmudev] — cheers for the review, folks!
|
|||
|
||||
This Plugin provides:
|
||||
|
||||
- fully customizable footnote start and end shortcodes;
|
||||
- stylable tooltips supporting hyperlinks and dedicated text;
|
||||
- a responsive 'reference container', with customisable positioning;
|
||||
- a wide choice of different numbering styles;
|
||||
- a freely-configurable and optional backlink symbol;
|
||||
- footnote appearance customisation via dashboard settings and custom CSS style
|
||||
* fully customizable footnote start and end shortcodes;
|
||||
* stylable tooltips supporting hyperlinks and dedicated text;
|
||||
* a responsive 'reference container', with customisable positioning;
|
||||
* a wide choice of different numbering styles;
|
||||
* a freely-configurable and optional backlink symbol;
|
||||
* footnote appearance customisation via dashboard settings and custom CSS style
|
||||
rules; and
|
||||
- editor buttons for easily adding shortcode tags.
|
||||
* editor buttons for easily adding shortcode tags.
|
||||
|
||||
## Getting Started
|
||||
|
||||
1. Read the [contributing guidelines][contributing];
|
||||
1. clone this repository (`git clone git@github.com:markcheret/footnotes.git`):
|
||||
- we recommend that you use [VVV][vvv] for your local testing environment.
|
||||
* we recommend that you use [VVV][vvv] for your local testing environment.
|
||||
1. install [Composer][composer] and [NPM][npm]; and
|
||||
1. install all dependencies (`composer install`):
|
||||
- you will have to install `php-mbstring` manually if you do not already
|
||||
* you will have to install `php-mbstring` manually if you do not already
|
||||
have it.
|
||||
|
||||
|
||||
## Deploying
|
||||
|
||||
Automated release deployments will be introduced soon.
|
||||
|
@ -61,14 +65,14 @@ Automated release deployments will be introduced soon.
|
|||
|
||||
1. Run `_tools/build-stylesheets.sh -c` to concatenate stylesheets;
|
||||
1. manually minify the output files in `css/tmp/`, saving them as `.min.css` files:
|
||||
- the intention is to replace this with automated minification, meaning that
|
||||
* the intention is to replace this with automated minification, meaning that
|
||||
all of these steps can be rolled into a single `build` command.
|
||||
1. run `_tools/build-stylesheets.sh -d` to deploy the minified files to `dist/`:
|
||||
- **this will delete any existing `dist/` folder!**
|
||||
* **this will delete any existing `dist/` folder!**
|
||||
1. run `composer run build` to move over the remaining files to `dist/`:
|
||||
- currently, the files to include in a distribution are hard-coded in
|
||||
* currently, the files to include in a distribution are hard-coded in
|
||||
`_tools/build.sh`; but
|
||||
- the intention is to replace this with a proper parsing of the `.distignore`
|
||||
* the intention is to replace this with a proper parsing of the `.distignore`
|
||||
file
|
||||
|
||||
### Releasing
|
||||
|
@ -76,43 +80,43 @@ Automated release deployments will be introduced soon.
|
|||
1. Ensure that you have configured your Git config. with SVN credentials;
|
||||
1. run the above [build](#building) commands; and
|
||||
1. run `composer run release` and follow the prompts.
|
||||
|
||||
|
||||
## Testing
|
||||
|
||||
Automated testing will be introduced soon.
|
||||
|
||||
## Code Formatting
|
||||
|
||||
This repo. uses pre-commit code formatting and linting on all staged files.
|
||||
This repo. uses pre-commit code formatting and linting on all staged files.
|
||||
This ensures that only style-conformant code can be committed.
|
||||
|
||||
The individual commands can also be called manually:
|
||||
|
||||
- Run `composer run format` to run all format commands.
|
||||
- Run `composer run format:fix` to attempt to automatically fix all formatter warnings
|
||||
* Run `composer run format` to run all format commands.
|
||||
* Run `composer run format:fix` to attempt to automatically fix all formatter warnings
|
||||
and errors.
|
||||
|
||||
- Run `composer run lint` to run all linting commands.
|
||||
- Run `composer run lint:fix` to attempt to automatically fix all linter warnings and
|
||||
errors.
|
||||
* Run `composer run lint` to run all linting commands.
|
||||
* Run `composer run lint:fix` to attempt to automatically fix all linter warnings
|
||||
and errors.
|
||||
|
||||
### PHP Code
|
||||
|
||||
PHP code must follow the [WordPress PHP Coding Standards][wpcs-php].
|
||||
|
||||
1. Run `composer run lint:php` to lint all JS/TS files with [PHP CodeSniffer][phpcs]
|
||||
1. Run `composer run lint:php:fix` to attempt to automatically fix warnings and
|
||||
1. Run `composer run lint:php:fix` to attempt to automatically fix warnings and
|
||||
errors with the PHP Code Beautifier and Formatter.
|
||||
|
||||
### JavaScript Code
|
||||
|
||||
JavaScript code must follow the [WordPress JavaScript Coding Standards][wpcs-js].
|
||||
|
||||
- Run `composer run format:js` to format all JS files with [Prettier][prettier].
|
||||
- Run `composer run format:js:fix` to attempt to automatically fix warnings and errors.
|
||||
* Run `composer run format:js` to format all JS files with [Prettier][prettier].
|
||||
* Run `composer run format:js:fix` to attempt to automatically fix warnings and errors.
|
||||
|
||||
- Run `composer run lint:js` to lint all JS files with [ESLint][eslint].
|
||||
- Run `composer run lint:js:fix` to attempt to automatically fix warnings and errors.
|
||||
* Run `composer run lint:js` to lint all JS files with [ESLint][eslint].
|
||||
* Run `composer run lint:js:fix` to attempt to automatically fix warnings and errors.
|
||||
|
||||
Prettier configuration settings are found in `.prettierrc`.
|
||||
|
||||
|
@ -123,32 +127,33 @@ found in `.eslintignore`.
|
|||
|
||||
JavaScript code must follow the [WordPress CSS Coding Standards][wpcs-css].
|
||||
|
||||
- Run `composer run lint:css` to format all CSS files with [stylelint][stylelint].
|
||||
- Run `npcomposerm run lint:css:fix` to attempt to automatically fix warnings and errors.
|
||||
* Run `composer run lint:css` to format all CSS files with [stylelint][stylelint].
|
||||
* Run `npcomposerm run lint:css:fix` to attempt to automatically fix warnings and
|
||||
errors.
|
||||
|
||||
stylelint configuration settings are found in `.stylelint.json`.
|
||||
|
||||
## Documentation
|
||||
|
||||
Run `composer run docs` to automatically generate HTML documentation with
|
||||
Run `composer run docs` to automatically generate HTML documentation with
|
||||
[phpDocumentor][phpdocumentor].
|
||||
|
||||
View the current docs [here][footnotes-docs].
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
Huge thanks to every **footnotes user**, contributor, bug reporter, feature
|
||||
Huge thanks to every **footnotes user**, contributor, bug reporter, feature
|
||||
requester and fan!
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the [GNU GPL v3][gpl-v3].
|
||||
|
||||
## Contact Information
|
||||
## Contact Information
|
||||
|
||||
| Name | Link(s) |
|
||||
|---------------|-----------------------|
|
||||
|Mark Cheret | [Email][mcheret] |
|
||||
|Mark Cheret | [Email][mcheret] |
|
||||
|
||||
[wpmudev]: http://premium.wpmudev.org/blog/12-surprisingly-useful-wordpress-plugins-you-dont-know-about/
|
||||
[php]: https://www.php.net/
|
||||
|
|
|
@ -12,8 +12,8 @@ currently being supported with security updates.
|
|||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
To securely report a vulnerability, please DO NOT post on the WordPress
|
||||
To securely report a vulnerability, please DO NOT post on the WordPress
|
||||
Support Forum or create an Issue on this repository.
|
||||
|
||||
Please email [mark@cheret.de](mailto:mark@cheret.de) privately with the
|
||||
Please email [mark@cheret.de](mailto:mark@cheret.de) privately with the
|
||||
full details of the vulnerability.
|
||||
|
|
|
@ -14,70 +14,38 @@ echo "Running $(dirname "$0")/build-stylesheets.sh"
|
|||
|
||||
if [[ $1 == "-c" ]]; then
|
||||
|
||||
echo "Concatenating files and placing in \`css/tmp/\`..."
|
||||
echo "Concatenating files and placing in \`tmp/css/\`..."
|
||||
|
||||
mkdir -p ./css/tmp
|
||||
cat ./css/dev-common.css > ./css/tmp/footnotes-nottbrpl0.css
|
||||
cat ./css/dev-{common,layout-reference-container}.css > ./css/tmp/footnotes-nottbrpl1.css
|
||||
cat ./css/dev-{common,layout-entry-content}.css > ./css/tmp/footnotes-nottbrpl2.css
|
||||
cat ./css/dev-{common,layout-main-content}.css > ./css/tmp/footnotes-nottbrpl3.css
|
||||
cat ./css/dev-{common,tooltips}.css > ./css/tmp/footnotes-jqttbrpl0.css
|
||||
cat ./css/dev-{common,tooltips,layout-reference-container}.css > ./css/tmp/footnotes-jqttbrpl1.css
|
||||
cat ./css/dev-{common,tooltips,layout-entry-content}.css > ./css/tmp/footnotes-jqttbrpl2.css
|
||||
cat ./css/dev-{common,tooltips,layout-main-content}.css > ./css/tmp/footnotes-jqttbrpl3.css
|
||||
cat ./css/dev-{common,tooltips,tooltips-alternative}.css > ./css/tmp/footnotes-alttbrpl0.css
|
||||
cat ./css/dev-{common,tooltips,tooltips-alternative,layout-reference-container}.css > ./css/tmp/footnotes-alttbrpl1.css
|
||||
cat ./css/dev-{common,tooltips,tooltips-alternative,layout-entry-content}.css > ./css/tmp/footnotes-alttbrpl2.css
|
||||
cat ./css/dev-{common,tooltips,tooltips-alternative,layout-main-content}.css > ./css/tmp/footnotes-alttbrpl3.css
|
||||
cat ./css/settings.css > ./css/tmp/settings.css
|
||||
mkdir -p ./tmp/css
|
||||
cat ./src/css/dev-common.css > ./tmp/css/footnotes-nottbrpl0.css
|
||||
|
||||
cat ./src/css/dev-{common,layout-reference-container}.css > ./tmp/css/footnotes-nottbrpl1.css
|
||||
cat ./src/css/dev-{common,layout-entry-content}.css > ./tmp/css/footnotes-nottbrpl2.css
|
||||
cat ./src/css/dev-{common,layout-main-content}.css > ./tmp/css/footnotes-nottbrpl3.css
|
||||
|
||||
cat ./src/css/dev-{common,tooltips}.css > ./tmp/css/footnotes-jqttbrpl0.css
|
||||
cat ./src/css/dev-{common,tooltips,layout-reference-container}.css > ./tmp/css/footnotes-jqttbrpl1.css
|
||||
cat ./src/css/dev-{common,tooltips,layout-entry-content}.css > ./tmp/css/footnotes-jqttbrpl2.css
|
||||
cat ./src/css/dev-{common,tooltips,layout-main-content}.css > ./tmp/css/footnotes-jqttbrpl3.css
|
||||
|
||||
cat ./src/css/dev-{common,tooltips,tooltips-alternative}.css > ./tmp/css/footnotes-alttbrpl0.css
|
||||
cat ./src/css/dev-{common,tooltips,tooltips-alternative,layout-reference-container}.css > ./tmp/css/footnotes-alttbrpl1.css
|
||||
cat ./src/css/dev-{common,tooltips,tooltips-alternative,layout-entry-content}.css > ./tmp/css/footnotes-alttbrpl2.css
|
||||
cat ./src/css/dev-{common,tooltips,tooltips-alternative,layout-main-content}.css > ./tmp/css/footnotes-alttbrpl3.css
|
||||
|
||||
cat ./src/css/dev-{common,tooltips,amp-tooltips}.css > ./tmp/css/footnotes-amptbrpl0.css
|
||||
cat ./src/css/dev-{common,tooltips,amp-tooltips,layout-reference-container}.css > ./tmp/css/footnotes-amptbrpl1.css
|
||||
cat ./src/css/dev-{common,tooltips,amp-tooltips,layout-entry-content}.css > ./tmp/css/footnotes-amptbrpl2.css
|
||||
cat ./src/css/dev-{common,tooltips,amp-tooltips,layout-main-content}.css > ./tmp/css/footnotes-amptbrpl3.css
|
||||
|
||||
cat ./src/css/settings.css > ./tmp/css/settings.css
|
||||
|
||||
echo "Stylesheet concatenation complete."
|
||||
exit 0
|
||||
|
||||
elif [[ $1 == "-m" ]]; then
|
||||
|
||||
# TODO: this should automatically minifiy all files, outputting into `.min.css`
|
||||
# files and deleting the original concatenated `.css` files in `css/tmp/`.
|
||||
# Once that's done, we can change the `rm -r` command in the deploy step to
|
||||
# `rmdir`, which will throw us an error if we have any minified files that
|
||||
# haven't been moved over to `dist/css/` for whatever reason. As it currently
|
||||
# stands, we have no error checking in place.
|
||||
echo "Please minify the stylesheets in \`css/tmp/\`, saving them in the same location with the \`.min.css\` file extension."
|
||||
read -p "Are you ready to continue? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
exit 0
|
||||
|
||||
elif [[ $1 == "-d" ]]; then
|
||||
|
||||
# NOTE: I've temporarily replaced the `mv` command
|
||||
# with `cp` and disabled the `rm` command, so the minified
|
||||
# files won't be removed from the source directory.
|
||||
echo "Deploying minified stylesheets to \`dist/css/\`..."
|
||||
mkdir -p ./dist/css
|
||||
for f in ./css/tmp/*.min.css; do
|
||||
filename=$(basename $f .css)
|
||||
cp $f ./dist/css
|
||||
#mv $f ./dist/css
|
||||
echo -e '\t' $filename".css moved."
|
||||
done
|
||||
|
||||
# NB: We currently distribute both the minified + concatenated and the
|
||||
# unminified + unconcatenated stylesheets with the Plugin.
|
||||
echo "Deploying development stylesheets to \`dist/css/\`..."
|
||||
for f in ./css/dev-*.css; do
|
||||
filename=$(basename $f .css)
|
||||
cp $f ./dist/css
|
||||
#mv $f ./dist/css
|
||||
echo -e '\t' $filename".css moved."
|
||||
done
|
||||
|
||||
#echo "Deleting temporary files..."
|
||||
#rm -r ./css/tmp
|
||||
echo "All stylesheets added to build."
|
||||
exit 0
|
||||
|
||||
else
|
||||
|
||||
echo -e "Concatenates, minifies (TODO) and deploys stylesheets for distribution.\n"
|
||||
echo -e "Concatenates stylesheets ready for distribution.\n"
|
||||
echo -e "12 unified style sheets are concatenated out of these files:\n"
|
||||
echo "\`dev-common.css\`"
|
||||
echo "\`dev-tooltips.css\`"
|
||||
|
@ -86,8 +54,6 @@ else
|
|||
echo "\`dev-layout-entry-content.css\`"
|
||||
echo -e "\`dev-layout-main-content.css\`\n"
|
||||
echo "Command: \`-c\`: Concatenate \`dev-*\` CSS files into temporary directory."
|
||||
echo "Command: \`-m\`: Minify files (TODO)."
|
||||
echo "Command: \`-d\`: Deploy minified files to \`dist/css/\` and remove temporary files."
|
||||
echo "No command, \"--help\", or anything else: Output this help section."
|
||||
|
||||
fi
|
||||
|
|
|
@ -4,17 +4,17 @@ echo "Building Plugin..."
|
|||
|
||||
# Moves everything including the style sheets over to `dist/`
|
||||
echo "Copying directories..."
|
||||
rm -r dist/
|
||||
rm -rf dist/
|
||||
mkdir dist
|
||||
cp -r -t dist class/ css/ js/ languages/ templates/
|
||||
cp -r -t dist src/{class,languages,templates}/
|
||||
# Among the images, only 2 out of 3 are distributed.
|
||||
echo "Copying the needed images..."
|
||||
mkdir -p dist/img
|
||||
cp -t dist/img img/fn-wysiwyg.png
|
||||
cp -t dist/img src/img/fn-wysiwyg.png
|
||||
echo "Copying files..."
|
||||
cp -t dist license.txt readme.txt includes.php wpml-config.xml SECURITY.md
|
||||
cp -t dist ./{SECURITY.md,CHANGELOG.md,wpml-config.xml} src/{license.txt,readme.txt,includes.php}
|
||||
echo "Setting production flag..."
|
||||
sed "s/'PRODUCTION_ENV', false/'PRODUCTION_ENV', true/g" footnotes.php > dist/footnotes.php
|
||||
sed "s/'PRODUCTION_ENV', false/'PRODUCTION_ENV', true/g" src/footnotes.php > dist/footnotes.php
|
||||
echo "Production flag set."
|
||||
|
||||
# TODO: once automatic minification is implemented, this should handle that.
|
||||
|
@ -23,13 +23,13 @@ echo "Production flag set."
|
|||
echo "Building stylesheets..."
|
||||
./_tools/build-stylesheets.sh -c
|
||||
if [ $? != 0 ]; then echo "Concatenation failed!"; exit 1; fi
|
||||
if [[ $1 != "-y" ]]; then
|
||||
./_tools/build-stylesheets.sh -m
|
||||
if [ $? != 0 ]; then echo "Minification failed!"; exit 1; fi
|
||||
fi
|
||||
./_tools/build-stylesheets.sh -d
|
||||
if [ $? != 0 ]; then echo "Deployment failed!"; exit 1; fi
|
||||
echo "Stylesheet build complete."
|
||||
|
||||
echo "Minifying CSS and JS..."
|
||||
mkdir -p dist/{css,js}
|
||||
npm run minify
|
||||
if [ $? != 0 ]; then echo "Minification failed!"; exit 1; fi
|
||||
echo "Minification complete."
|
||||
|
||||
echo "Build complete."
|
||||
exit 0
|
||||
|
|
|
@ -27,29 +27,30 @@ if [[ $1 == "-c" ]]; then
|
|||
read -p "You have passed the \`commit\` flag (\`-c\`). Did you mean to do this? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
fi
|
||||
|
||||
# NB: To run on a branch other than `main`, uncomment this line:
|
||||
#if false; then
|
||||
# Unless forced to, the script will only run on the `main` branch.
|
||||
if [[ $1 != "-f" ]]; then
|
||||
|
||||
# Step 1: Ensure the local copy has checked out the `main` branch
|
||||
# Step 1: Ensure the local copy has checked out the `main` branch
|
||||
|
||||
if [[ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]]; then
|
||||
echo "ERR: You are not on the \`main\` branch, please check it out and re-run this command."
|
||||
exit 1
|
||||
else
|
||||
echo "- \`main\` branch is checked out."
|
||||
fi
|
||||
|
||||
# Step 2: Ensure local copy of `main` is up-to-date with remote
|
||||
|
||||
if [[ "$(git status | grep -c 'Your branch is up to date')" != 1 ]]; then
|
||||
echo "ERR: Your local copy is not up-to-date with the remote, please update it and re-run this command."
|
||||
exit 1
|
||||
else
|
||||
echo "- Local copy of \`main\` is up-to-date with remote."
|
||||
fi
|
||||
|
||||
if [[ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]]; then
|
||||
echo "ERR: You are not on the \`main\` branch, please check it out and re-run this command."
|
||||
exit 1
|
||||
else
|
||||
echo "- \`main\` branch is checked out."
|
||||
fi
|
||||
|
||||
# Step 2: Ensure local copy of `main` is up-to-date with remote
|
||||
|
||||
if [[ "$(git status | grep -c 'Your branch is up to date')" != 1 ]]; then
|
||||
echo "ERR: Your local copy is not up-to-date with the remote, please update it and re-run this command."
|
||||
exit 1
|
||||
else
|
||||
echo "- Local copy of \`main\` is up-to-date with remote."
|
||||
fi
|
||||
|
||||
# NB: To run on a branch other than `main`, uncomment this line:
|
||||
#fi
|
||||
rm -rf ./{dist,tmp,svn-tmp}
|
||||
|
||||
# Step 3: Check versioning
|
||||
|
||||
|
@ -62,26 +63,26 @@ fi
|
|||
|
||||
echo "- Checking versions..."
|
||||
|
||||
STABLE_TAG="$(grep "Stable Tag:" readme.txt)"
|
||||
ROOT_HEADER_VERSION="$(grep " Version:" footnotes.php | grep -Po " Version: \d+\.\d+(\.\d+)?[a-z]?$")"
|
||||
JS_VERSION="$(grep "version :" js/wysiwyg-editor.js)"
|
||||
STABLE_TAG="$(grep "Stable Tag:" src/readme.txt)"
|
||||
ROOT_HEADER_VERSION="$(grep " Version:" src/footnotes.php | grep -Po " Version: \d+\.\d+(\.\d+)?[a-z]?$")"
|
||||
JS_VERSION="$(grep "version :" src/js/wysiwyg-editor.js)"
|
||||
|
||||
# Step 3(b): Check that all version declarations exists
|
||||
|
||||
if [[ -z $STABLE_TAG ]]; then
|
||||
echo "ERR: No 'Stable Tag' field found in \`readme.txt\`!"
|
||||
echo "ERR: No 'Stable Tag' field found in \`src/readme.txt\`!"
|
||||
exit 1
|
||||
else echo "- 'Stable Tag' field set in \`readme.txt\`."
|
||||
else echo "- 'Stable Tag' field set in \`src/readme.txt\`."
|
||||
fi
|
||||
if [[ -z $ROOT_HEADER_VERSION ]]; then
|
||||
echo "ERR: No 'Version' field found in \`footnotes.php\` file header!"
|
||||
echo "ERR: No 'Version' field found in \`src/footnotes.php\` file header!"
|
||||
exit 1
|
||||
else echo "- 'Version' field set in \`footnotes.php\` file header."
|
||||
else echo "- 'Version' field set in \`src/footnotes.php\` file header."
|
||||
fi
|
||||
if [[ -z $JS_VERSION ]]; then
|
||||
echo "ERR: No \`version\` variable found in \`js/wysiwyg-editor.js\`!"
|
||||
echo "ERR: No \`version\` variable found in \`src/js/wysiwyg-editor.js\`!"
|
||||
exit 1
|
||||
else echo "- \`version\` variable set in \`js/wysiwyg-editor.js\`."
|
||||
else echo "- \`version\` variable set in \`src/js/wysiwyg-editor.js\`."
|
||||
fi
|
||||
|
||||
# Step 3(c)(1): Check that all development versions match
|
||||
|
@ -153,7 +154,7 @@ fi
|
|||
|
||||
# Step 3(g): Check that the changelog is up-to-date
|
||||
|
||||
CHANGELOG_LATEST="$(awk -e '/== Changelog ==/,/= [0-9]+\.[0-9]+(\.[0-9]+)? =/' readme.txt | grep -Po '\d+\.\d+(\.\d+)?')"
|
||||
CHANGELOG_LATEST="$(awk -e '/== Changelog ==/,/= [0-9]+\.[0-9]+(\.[0-9]+)? =/' src/readme.txt | grep -Po '\d+\.\d+(\.\d+)?')"
|
||||
if [[ $CHANGELOG_LATEST != $DEVELOPMENT_VERSION ]]; then
|
||||
echo "ERR: Changelog is not up-to-date!"
|
||||
echo "Current version is $DEVELOPMENT_VERSION"
|
||||
|
@ -176,14 +177,16 @@ echo -e "- Build complete.\n"
|
|||
|
||||
echo "- Setting pre-release version flags..."
|
||||
PRERELEASE_VERSION=$DEVELOPMENT_VERSION'p'
|
||||
sed -i "s/$JS_VERSION/version : \"$PRERELEASE_VERSION\"/g" dist/js/wysiwyg-editor.js
|
||||
sed -i "s/$JS_VERSION/$PRERELEASE_VERSION/g" dist/js/wysiwyg-editor.min.js
|
||||
echo "- Pre-release flags set."
|
||||
|
||||
# Step 6: Tag the release
|
||||
|
||||
echo "- Tagging release..."
|
||||
git tag -a $DEVELOPMENT_VERSION -m "Pre-release of version $DEVELOPMENT_VERSION"
|
||||
git push --tags
|
||||
if [ $? != 0 ]; then echo "Tag already exists!"; exit 1; fi
|
||||
git push --tags --no-verify
|
||||
if [ $? != 0 ]; then echo "Push failed (tag probably exists on remote)!"; exit 1; fi
|
||||
echo "- Release tagged."
|
||||
|
||||
# Step 7: Push release to SVN repo.
|
||||
|
@ -195,21 +198,22 @@ echo "For the time being, this part of the process shall remain (mostly) manual.
|
|||
read -p "Are you ready to continue? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
|
||||
echo "Creating local copy of SVN repo..."
|
||||
svn checkout https://plugins.svn.wordpress.org/footnotes tmp --depth immediates
|
||||
svn update --quiet tmp/trunk --set-depth infinity
|
||||
svn update --quiet tmp/tags/$PRERELEASE_VERSION --set-depth infinity
|
||||
svn checkout https://plugins.svn.wordpress.org/footnotes svn-tmp --depth immediates
|
||||
svn update --quiet svn-tmp/trunk --set-depth infinity
|
||||
svn update --quiet svn-tmp/tags/$PRERELEASE_VERSION --set-depth infinity
|
||||
echo -e "Local copy created.\n"
|
||||
|
||||
# Step 7(b): Update `trunk/`
|
||||
echo -e "Copying files from \`dist/\` to SVN \`trunk/\`...\n"
|
||||
rsync -avhic dist/ tmp/trunk/ --delete | grep -v "^\."
|
||||
read -p "Does the above list of changes look correct? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
rsync -avhic dist/ svn-tmp/trunk/ --delete | grep -v "^\."
|
||||
rsync -avhic assets/ svn-tmp/assets/ --delete | grep -v "^\."
|
||||
read -p "Does the above list of changes (additions and deletions ONLY) look correct? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
echo -e "Copying complete.\n"
|
||||
|
||||
# Step 7(c): Set a release message
|
||||
|
||||
echo "Getting commit message from changelog..."
|
||||
CHANGELOG_MESSAGE="$(awk -e "/= $DEVELOPMENT_VERSION =/,/= $STABLE_VERSION =/" readme.txt | grep '^-')"
|
||||
CHANGELOG_MESSAGE="$(awk -e "/= $DEVELOPMENT_VERSION =/,/= $STABLE_VERSION =/" dist/readme.txt | grep '^-')"
|
||||
echo -e "The changelog message for this version is:\n"
|
||||
echo -e "$CHANGELOG_MESSAGE\n"
|
||||
read -p "Is this correct? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
|
@ -226,23 +230,22 @@ echo "Stable version:"
|
|||
echo -e '\t' $STABLE_VERSION '\n'
|
||||
echo -e "Commit message:\n"
|
||||
echo -e "$CHANGELOG_MESSAGE" '\n'
|
||||
svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %
|
||||
echo -e "Changes made to local \`trunk/\`:\n"
|
||||
svn stat tmp/trunk/
|
||||
svn stat svn-tmp/trunk/ | grep '^\!' | sed 's/! *//' | xargs -I% svn rm % >/dev/null
|
||||
echo -e "Changes made to local \`trunk/\` (should only be 'M', 'D' and '?'):\n"
|
||||
svn stat svn-tmp/trunk/
|
||||
echo ""
|
||||
echo -e "\`readme.txt\` header:\n"
|
||||
head tmp/trunk/readme.txt
|
||||
head svn-tmp/trunk/readme.txt
|
||||
echo ""
|
||||
read -p "Is this all correct? (Y/N): " CONFIRM && [[ $CONFIRM == [yY] || $CONFIRM == [yY][eE][sS] ]] || exit 1
|
||||
|
||||
# Step 7(d): Push to remote `trunk/` (provided the flag is set)
|
||||
|
||||
if [[ $1 == "-c" ]]; then
|
||||
cd tmp && svn ci -m "$CHANGELOG_MESSAGE"
|
||||
cd ..
|
||||
cd svn-tmp && svn ci -m "$CHANGELOG_MESSAGE" && cd ..
|
||||
else echo "- Commit flag not set, skipping commit step."
|
||||
fi
|
||||
|
||||
# Step 8: Cleanup
|
||||
|
||||
#rm -rf {dist/,tmp/}
|
||||
#rm -rf {dist/,svn-tmp/}
|
||||
|
|
BIN
assets/banner-1544x500.jpg
Normal file
After Width: | Height: | Size: 209 KiB |
BIN
assets/banner-772x250.jpg
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
assets/icon-128x128.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
assets/icon-256x256.png
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
assets/screenshot-1.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
assets/screenshot-2.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
assets/screenshot-3.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
assets/screenshot-4.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
assets/screenshot-5.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
assets/screenshot-6.jpg
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
assets/screenshot-7.jpg
Normal file
After Width: | Height: | Size: 88 KiB |
|
@ -1,8 +1,9 @@
|
|||
{
|
||||
"name": "markcheret/footnotes",
|
||||
"description": "footnotes aims to be the all-in-one solution for displaying an automatically-generated list of references on your WordPress Page or Post.",
|
||||
"description": "footnotes lets you easily add highly-customisable footnotes on your WordPress Pages and Posts.",
|
||||
"license": "GPL-3.0-only",
|
||||
"scripts": {
|
||||
"cm": "npm run cz",
|
||||
"release": "./_tools/release.sh",
|
||||
"release:commit": "composer run release -- -c",
|
||||
"build": "./_tools/build.sh",
|
||||
|
@ -10,24 +11,27 @@
|
|||
"lint:fix": "composer run lint:php:fix && npm run lint:fix",
|
||||
"format": "npm run format",
|
||||
"format:fix": "npm run format:fix",
|
||||
"lint:php": "./vendor/bin/phpcs --standard=WordPress --colors --encoding=utf-8 -n -p --ignore=./vendor,./node_modules ./*.php ./**/*.php && ./vendor/bin/phpcs --standard=PHPCompatibilityWP --runtime-set testVersion 7.0- --colors --encoding=utf-8 -n -p --ignore=./vendor,./node_modules ./*.php ./**/*.php",
|
||||
"lint:php:fix": "./vendor/bin/phpcbf --standard=WordPress --encoding=utf-8 -p --ignore=./vendor,./node_modules ./*.php ./**/*.php && ./vendor/bin/phpcbf --standard=PHPCompatibilityWP --runtime-set testVersion 7.0- --encoding=utf-8 -p --ignore=./vendor,./node_modules ./*.php ./**/*.php",
|
||||
"lint:php": "./vendor/bin/phpcs --standard=WordPress --colors --encoding=utf-8 -n -p ./src/*.php ./src/**/*.php && ./vendor/bin/phpcs --standard=PHPCompatibilityWP --runtime-set testVersion 7.0- --colors --encoding=utf-8 -n -p ./src/*.php ./src/**/*.php",
|
||||
"lint:php:fix": "./vendor/bin/phpcbf --standard=WordPress --encoding=utf-8 -p ./src/*.php ./src/**/*.php && ./vendor/bin/phpcbf --standard=PHPCompatibilityWP --runtime-set testVersion 7.0- --encoding=utf-8 -p ./src/*.php ./src/**/*.php",
|
||||
"lint:css": "npm run lint:css",
|
||||
"lint:css:fix": "npm run lint:css:fix",
|
||||
"lint:js": "npm run lint:js",
|
||||
"lint:js:fix": "npm run lint:js:fix",
|
||||
"format:js": "npm run format:js",
|
||||
"format:js:fix": "npm run format:js:fix",
|
||||
"lint:md": "npm run lint:md",
|
||||
"lint:md:fix": "npm run lint:md:fix",
|
||||
"docs": "./vendor/bin/phpdoc",
|
||||
"commit": "./vendor/bin/php-commitizen commit -- ./.php-commitizen.php",
|
||||
"post-install-cmd": "npm install && ./_tools/setup.sh"
|
||||
"post-install-cmd": "npm install",
|
||||
"minify": "npm run minify",
|
||||
"minify:css": "npm run minify:css",
|
||||
"minify:js": "npm run minify:js"
|
||||
},
|
||||
"require-dev": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
|
||||
"phpcompatibility/php-compatibility": "*",
|
||||
"wp-coding-standards/wpcs": "^2.3",
|
||||
"phpdocumentor/phpdocumentor": "^3.0",
|
||||
"damianopetrungaro/php-commitizen": "^0.2.0",
|
||||
"marcocesarato/php-conventional-changelog": "^1.9",
|
||||
"phpcompatibility/phpcompatibility-wp": "*"
|
||||
},
|
||||
|
|
57
composer.lock
generated
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "635644be9174c16cb944ef5f2bf46e80",
|
||||
"content-hash": "1b1e75ba247201e270b06cd85706a3bd",
|
||||
"packages": [],
|
||||
"packages-dev": [
|
||||
{
|
||||
|
@ -80,61 +80,6 @@
|
|||
],
|
||||
"time": "2020-11-11T10:22:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "damianopetrungaro/php-commitizen",
|
||||
"version": "v0.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/conventional-commits/php-commitizen.git",
|
||||
"reference": "985283538f013c37146b2ec83812eeef2ff9d73c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/conventional-commits/php-commitizen/zipball/985283538f013c37146b2ec83812eeef2ff9d73c",
|
||||
"reference": "985283538f013c37146b2ec83812eeef2ff9d73c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"symfony/console": "^4 || ^5"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/prophecy-phpunit": "^2.0",
|
||||
"phpunit/phpunit": "^9"
|
||||
},
|
||||
"bin": [
|
||||
"php-commitizen"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Damianopetrungaro\\PHPCommitizen\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Damiano Petrungaro",
|
||||
"email": "damianopetrungaro@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Help writing Git commit following conventional commit specs",
|
||||
"keywords": [
|
||||
"atomic",
|
||||
"atomic commit",
|
||||
"commit",
|
||||
"conventional commit",
|
||||
"conventionalcommit",
|
||||
"git"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/conventional-commits/php-commitizen/issues",
|
||||
"source": "https://github.com/conventional-commits/php-commitizen/tree/v0.2.0"
|
||||
},
|
||||
"time": "2020-07-15T23:51:42+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dealerdirect/phpcodesniffer-composer-installer",
|
||||
"version": "v0.7.1",
|
||||
|
|
1
css/dev-amp-tooltips.min.css
vendored
|
@ -1 +0,0 @@
|
|||
span.footnote_referrer>span.footnote_tooltip{visibility:hidden;opacity:0;transition-property:visibility,opacity}span.footnote_referrer:focus-within>span.footnote_tooltip,span.footnote_referrer:hover>span.footnote_tooltip{visibility:visible;opacity:1;transition-property:visibility,opacity}.footnote_referrer.relative{position:relative}.footnote_tooltip.position{display:unset;position:absolute}
|
1
css/dev-common.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnotes_validation_error{border:4px solid red;padding:20px 40px;margin:20px 0;background:#ff000055;text-align:start}.footnotes_validation_error p:first-child{font-size:20px;font-weight:700;text-align:center}.footnotes_validation_error p:nth-child(2){font-size:16px;font-style:italic}.footnotes_validation_error p:nth-child(3){font-size:14px;font-weight:700}.footnotes_validation_error p:last-child{font-size:12px}.footnote_url_wrap{word-wrap:anywhere;overflow-wrap:anywhere;word-break:break-all}.footnote_item_base,.footnote_referrer_base{position:relative!important}.footnote_item_anchor,.footnote_referrer_anchor{position:absolute!important}.footnote_plugin_tooltip_text,.footnote_plugin_tooltip_text:hover,.footnote_referrer,.footnote_referrer:hover,.footnote_referrer:link,.footnote_referrer>a,.footnote_referrer>a:hover,.footnote_referrer>a:link,.main-content .footnote_plugin_tooltip_text,.main-content .footnote_plugin_tooltip_text:hover,.main-content .footnote_referrer,.main-content .footnote_referrer:hover,.main-content .footnote_referrer:link,.main-content .footnote_referrer>a,.main-content .footnote_referrer>a:hover,.main-content .footnote_referrer>a:link{text-decoration:none!important;border-bottom:none!important;box-shadow:none!important}.footnote_plugin_tooltip_text{line-height:0;position:relative!important;cursor:pointer}.footnotes_reference_container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.collapsed{display:none}.unfolded{display:inline}.footnote_container_prepare{display:block!important;padding-top:24px!important}.footnote_container_prepare>p{line-height:1.3!important;margin-top:1em!important;margin-bottom:.25em!important;padding:0!important;font-weight:400!important;display:block!important;-webkit-margin-before:.83em!important;-webkit-margin-after:.83em!important;-webkit-margin-start:0!important;-webkit-margin-end:0!important;text-align:start!important;vertical-align:middle}.footnote_container_prepare>p>span:first-child,.footnote_container_prepare>p>span:nth-child(3){text-align:start!important;font-size:1.5em!important}.footnote_reference_container_collapse_button{cursor:pointer;padding:0 .5em;font-size:1.3em!important;vertical-align:2px;text-decoration:none!important}h2>.footnote_reference_container_collapse_button,h3>.footnote_reference_container_collapse_button,h4>.footnote_reference_container_collapse_button,h5>.footnote_reference_container_collapse_button,h6>.footnote_reference_container_collapse_button{font-size:inherit!important}.footnote_container_prepare>p>span:last-child a,.footnote_reference_container_collapse_button a{text-decoration:none!important}.footnote-reference-container,.footnotes_table{width:100%!important;border:none!important}.footnotes_table caption.accessibility{text-align:start;margin-top:-2px!important;height:1px!important;width:1px!important;white-space:nowrap!important;overflow:hidden!important;color:#ffffff00!important;background-color:#ffffff00!important}.footnotes_table .footnotes_plugin_reference_row th{color:unset!important;background-color:inherit!important}.footnote_plugin_index,.footnote_plugin_index_combi,.footnote_plugin_symbol,.footnote_plugin_text{border:none!important;text-align:start!important;vertical-align:top!important;padding:5px 6px 10px 0!important}html[dir=rtl] .footnote_plugin_index,html[dir=rtl] .footnote_plugin_index_combi,html[dir=rtl] .footnote_plugin_symbol,html[dir=rtl] .footnote_plugin_text{padding:5px 0 10px 6px!important}.footnote_backlink,.footnote_backlink:link,.footnote_plugin_link,.footnote_plugin_link:link,.main-content .footnote_backlink,.main-content .footnote_backlink:link,.main-content .footnote_plugin_link,.main-content .footnote_plugin_link:link{text-decoration:none!important;border-bottom:none!important}.footnote_backlink,.footnote_plugin_link{white-space:nowrap}.footnote_backlink,.footnote_index,.pointer{cursor:pointer}.footnote_backlink:hover,.footnote_plugin_link:hover,.footnote_plugin_text a:hover{text-decoration:unset;text-decoration:underline}.footnote_plugin_text{width:unset}.footnote_plugin_index,.footnote_plugin_index_combi{max-width:100px;width:2.5em}@media only screen and (max-width:768px){.footnote_plugin_index,.footnote_plugin_index_combi{max-width:80px}}.footnotes_reference_container{page-break-inside:avoid}@media print{.footnote_index_arrow,.footnote_reference_container_collapse_button,.footnote_tooltip{display:none}.footnote_plugin_tooltip_text{color:inherit}.footnote_plugin_index a,.footnote_plugin_index_combi a{color:inherit;text-decoration:none!important}div.post-meta-edit-link-wrapper{display:none}}.footnotes_logo,.footnotes_logo:hover{text-decoration:none;font-weight:400}.footnotes_logo_part1{color:#2bb975}.footnotes_logo_part2{color:#545f5a}
|
1
css/dev-layout-entry-content.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{margin:0 auto}@media (max-width:575px){.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{padding:0 10px}}@media (min-width:576px){.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{max-width:500px}}@media (min-width:768px){.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{max-width:600px}}@media (min-width:992px){.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{max-width:800px}}@media (min-width:1200px){.entry .entry-content,.entry-content,.page-content,main .entry .entry-content{max-width:960px}}
|
1
css/dev-layout-main-content.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.main-content,.site-main,div.hentry,main{margin:0 auto}@media (max-width:575px){.main-content,.site-main,div.hentry,main{padding:0 10px}}@media (min-width:576px){.main-content,.site-main,div.hentry,main{max-width:500px}}@media (min-width:768px){.main-content,.site-main,div.hentry,main{max-width:600px}}@media (min-width:992px){.main-content,.site-main,div.hentry,main{max-width:800px}}@media (min-width:1200px){.main-content,.site-main,div.hentry,main{max-width:960px}}
|
1
css/dev-layout-reference-container.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{margin:0 auto}@media (max-width:575px){.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{padding:0 10px}}@media (min-width:576px){.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{max-width:500px}}@media (min-width:768px){.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{max-width:600px}}@media (min-width:992px){.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{max-width:800px}}@media (min-width:1200px){.entry-content div.footnotes_reference_container,.entry-content>.footnotes_reference_container,main div.footnotes_reference_container{max-width:960px}}
|
1
css/dev-tooltips-alternative.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnote_referrer.relative{position:relative}.footnote_tooltip.position{display:unset;position:absolute}.footnote_tooltip.shown{visibility:visible;opacity:1;transition-property:visibility,opacity;transition-timing-function:linear}.footnote_tooltip.hidden{visibility:hidden;opacity:0;transition-property:visibility,opacity;transition-timing-function:linear}
|
1
css/dev-tooltips.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnote_tooltip{display:none;z-index:2147483647!important;cursor:auto;text-align:start!important;padding:12px!important;line-height:1.2;font-weight:400;font-style:normal}.footnote_tooltip_continue{font-style:italic;color:green;text-decoration:none!important;cursor:pointer;white-space:nowrap}.footnote_tooltip_continue:hover{color:#00f;text-decoration:underline!important}
|
1
css/footnotes-amptbrpl0.min.css
vendored
1
css/footnotes-amptbrpl1.min.css
vendored
1
css/footnotes-amptbrpl2.min.css
vendored
1
css/footnotes-amptbrpl3.min.css
vendored
1
css/tmp/footnotes-alttbrpl0.min.css
vendored
1
css/tmp/footnotes-alttbrpl1.min.css
vendored
1
css/tmp/footnotes-alttbrpl2.min.css
vendored
1
css/tmp/footnotes-alttbrpl3.min.css
vendored
1
css/tmp/footnotes-jqttbrpl0.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnotes_validation_error{border:4px solid red;padding:20px 40px;margin:20px 0;background:#ff000055;text-align:start}.footnotes_validation_error p:first-child{font-size:20px;font-weight:700;text-align:center}.footnotes_validation_error p:nth-child(2){font-size:16px;font-style:italic}.footnotes_validation_error p:nth-child(3){font-size:14px;font-weight:700}.footnotes_validation_error p:last-child{font-size:12px}.footnote_url_wrap{word-wrap:anywhere;overflow-wrap:anywhere;word-break:break-all}.footnote_item_base,.footnote_referrer_base{position:absolute}.footnote_item_anchor,.footnote_referrer_anchor{position:relative}.footnote_plugin_tooltip_text,.footnote_plugin_tooltip_text:hover,.footnote_referrer,.footnote_referrer:hover,.footnote_referrer:link,.footnote_referrer>a,.footnote_referrer>a:hover,.footnote_referrer>a:link,.main-content .footnote_plugin_tooltip_text,.main-content .footnote_plugin_tooltip_text:hover,.main-content .footnote_referrer,.main-content .footnote_referrer:hover,.main-content .footnote_referrer:link,.main-content .footnote_referrer>a,.main-content .footnote_referrer>a:hover,.main-content .footnote_referrer>a:link{text-decoration:none!important;border-bottom:none!important;box-shadow:none!important}.footnote_plugin_tooltip_text{line-height:0;position:relative!important;cursor:pointer}.footnotes_reference_container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.footnote_container_prepare{display:block!important;padding-top:24px!important}.footnote_container_prepare>p{line-height:1.3!important;margin-top:1em!important;margin-bottom:.25em!important;padding:0!important;font-weight:400!important;display:block!important;-webkit-margin-before:.83em!important;-webkit-margin-after:.83em!important;-webkit-margin-start:0!important;-webkit-margin-end:0!important;text-align:start!important;vertical-align:middle}.footnote_container_prepare>p>span:first-child,.footnote_container_prepare>p>span:nth-child(3){text-align:start!important;font-size:1.5em!important}.footnote_reference_container_collapse_button{cursor:pointer;padding:0 .5em;font-size:1.3em!important;vertical-align:2px;text-decoration:none!important}h2>.footnote_reference_container_collapse_button,h3>.footnote_reference_container_collapse_button,h4>.footnote_reference_container_collapse_button,h5>.footnote_reference_container_collapse_button,h6>.footnote_reference_container_collapse_button{font-size:inherit!important}.footnote_container_prepare>p>span:last-child a,.footnote_reference_container_collapse_button a{text-decoration:none!important}.footnote-reference-container,.footnotes_table{width:100%;border:none}.footnote_plugin_index,.footnote_plugin_index_combi,.footnote_plugin_symbol,.footnote_plugin_text{border:none!important;text-align:start!important;vertical-align:top!important;padding:5px 6px 10px 0!important}html[dir=rtl] .footnote_plugin_index,html[dir=rtl] .footnote_plugin_index_combi,html[dir=rtl] .footnote_plugin_symbol,html[dir=rtl] .footnote_plugin_text{padding:5px 0 10px 6px!important}.footnote_backlink,.footnote_backlink:link,.footnote_plugin_link,.footnote_plugin_link:link,.main-content .footnote_backlink,.main-content .footnote_backlink:link,.main-content .footnote_plugin_link,.main-content .footnote_plugin_link:link{text-decoration:none!important;border-bottom:none!important}.footnote_backlink,.footnote_plugin_link{white-space:nowrap}.footnote_backlink,.footnote_index,.pointer{cursor:pointer}.footnote_backlink:hover,.footnote_plugin_link:hover,.footnote_plugin_text a:hover{text-decoration:unset;text-decoration:underline}.footnote_plugin_text{width:unset}.footnote_plugin_index,.footnote_plugin_index_combi{max-width:100px;width:2.5em}@media only screen and (max-width:768px){.footnote_plugin_index,.footnote_plugin_index_combi{max-width:80px}}.footnotes_reference_container{page-break-inside:avoid}@media print{.footnote_index_arrow,.footnote_reference_container_collapse_button,.footnote_tooltip{display:none}.footnote_plugin_tooltip_text{color:inherit}.footnote_plugin_index a,.footnote_plugin_index_combi a{color:inherit;text-decoration:none!important}div.post-meta-edit-link-wrapper{display:none}}.footnotes_logo,.footnotes_logo:hover{text-decoration:none;font-weight:400}.footnotes_logo_part1{color:#2bb975}.footnotes_logo_part2{color:#545f5a}.footnote_tooltip{display:none;z-index:2147483647!important;cursor:auto;text-align:start!important;padding:12px;line-height:1.2;font-weight:400;font-style:normal}.footnote_tooltip_continue{font-style:italic;color:green;text-decoration:none!important;cursor:pointer;white-space:nowrap}.footnote_tooltip_continue:hover{color:#00f;text-decoration:underline!important}
|
1
css/tmp/footnotes-jqttbrpl1.min.css
vendored
1
css/tmp/footnotes-jqttbrpl2.min.css
vendored
1
css/tmp/footnotes-jqttbrpl3.min.css
vendored
1
css/tmp/footnotes-nottbrpl0.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnotes_validation_error{border:4px solid red;padding:20px 40px;margin:20px 0;background:#ff000055;text-align:start}.footnotes_validation_error p:first-child{font-size:20px;font-weight:700;text-align:center}.footnotes_validation_error p:nth-child(2){font-size:16px;font-style:italic}.footnotes_validation_error p:nth-child(3){font-size:14px;font-weight:700}.footnotes_validation_error p:last-child{font-size:12px}.footnote_url_wrap{word-wrap:anywhere;overflow-wrap:anywhere;word-break:break-all}.footnote_item_base,.footnote_referrer_base{position:absolute}.footnote_item_anchor,.footnote_referrer_anchor{position:relative}.footnote_plugin_tooltip_text,.footnote_plugin_tooltip_text:hover,.footnote_referrer,.footnote_referrer:hover,.footnote_referrer:link,.footnote_referrer>a,.footnote_referrer>a:hover,.footnote_referrer>a:link,.main-content .footnote_plugin_tooltip_text,.main-content .footnote_plugin_tooltip_text:hover,.main-content .footnote_referrer,.main-content .footnote_referrer:hover,.main-content .footnote_referrer:link,.main-content .footnote_referrer>a,.main-content .footnote_referrer>a:hover,.main-content .footnote_referrer>a:link{text-decoration:none!important;border-bottom:none!important;box-shadow:none!important}.footnote_plugin_tooltip_text{line-height:0;position:relative!important;cursor:pointer}.footnotes_reference_container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.footnote_container_prepare{display:block!important;padding-top:24px!important}.footnote_container_prepare>p{line-height:1.3!important;margin-top:1em!important;margin-bottom:.25em!important;padding:0!important;font-weight:400!important;display:block!important;-webkit-margin-before:.83em!important;-webkit-margin-after:.83em!important;-webkit-margin-start:0!important;-webkit-margin-end:0!important;text-align:start!important;vertical-align:middle}.footnote_container_prepare>p>span:first-child,.footnote_container_prepare>p>span:nth-child(3){text-align:start!important;font-size:1.5em!important}.footnote_reference_container_collapse_button{cursor:pointer;padding:0 .5em;font-size:1.3em!important;vertical-align:2px;text-decoration:none!important}h2>.footnote_reference_container_collapse_button,h3>.footnote_reference_container_collapse_button,h4>.footnote_reference_container_collapse_button,h5>.footnote_reference_container_collapse_button,h6>.footnote_reference_container_collapse_button{font-size:inherit!important}.footnote_container_prepare>p>span:last-child a,.footnote_reference_container_collapse_button a{text-decoration:none!important}.footnote-reference-container,.footnotes_table{width:100%;border:none}.footnote_plugin_index,.footnote_plugin_index_combi,.footnote_plugin_symbol,.footnote_plugin_text{border:none!important;text-align:start!important;vertical-align:top!important;padding:5px 6px 10px 0!important}html[dir=rtl] .footnote_plugin_index,html[dir=rtl] .footnote_plugin_index_combi,html[dir=rtl] .footnote_plugin_symbol,html[dir=rtl] .footnote_plugin_text{padding:5px 0 10px 6px!important}.footnote_backlink,.footnote_backlink:link,.footnote_plugin_link,.footnote_plugin_link:link,.main-content .footnote_backlink,.main-content .footnote_backlink:link,.main-content .footnote_plugin_link,.main-content .footnote_plugin_link:link{text-decoration:none!important;border-bottom:none!important}.footnote_backlink,.footnote_plugin_link{white-space:nowrap}.footnote_backlink,.footnote_index,.pointer{cursor:pointer}.footnote_backlink:hover,.footnote_plugin_link:hover,.footnote_plugin_text a:hover{text-decoration:unset;text-decoration:underline}.footnote_plugin_text{width:unset}.footnote_plugin_index,.footnote_plugin_index_combi{max-width:100px;width:2.5em}@media only screen and (max-width:768px){.footnote_plugin_index,.footnote_plugin_index_combi{max-width:80px}}.footnotes_reference_container{page-break-inside:avoid}@media print{.footnote_index_arrow,.footnote_reference_container_collapse_button,.footnote_tooltip{display:none}.footnote_plugin_tooltip_text{color:inherit}.footnote_plugin_index a,.footnote_plugin_index_combi a{color:inherit;text-decoration:none!important}div.post-meta-edit-link-wrapper{display:none}}.footnotes_logo,.footnotes_logo:hover{text-decoration:none;font-weight:400}.footnotes_logo_part1{color:#2bb975}.footnotes_logo_part2{color:#545f5a}
|
1
css/tmp/footnotes-nottbrpl1.min.css
vendored
1
css/tmp/footnotes-nottbrpl2.min.css
vendored
1
css/tmp/footnotes-nottbrpl3.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnotes_validation_error{border:4px solid red;padding:20px 40px;margin:20px 0;background:#ff000055;text-align:start}.footnotes_validation_error p:first-child{font-size:20px;font-weight:700;text-align:center}.footnotes_validation_error p:nth-child(2){font-size:16px;font-style:italic}.footnotes_validation_error p:nth-child(3){font-size:14px;font-weight:700}.footnotes_validation_error p:last-child{font-size:12px}.footnote_url_wrap{word-wrap:anywhere;overflow-wrap:anywhere;word-break:break-all}.footnote_item_base,.footnote_referrer_base{position:absolute}.footnote_item_anchor,.footnote_referrer_anchor{position:relative}.footnote_plugin_tooltip_text,.footnote_plugin_tooltip_text:hover,.footnote_referrer,.footnote_referrer:hover,.footnote_referrer:link,.footnote_referrer>a,.footnote_referrer>a:hover,.footnote_referrer>a:link,.main-content .footnote_plugin_tooltip_text,.main-content .footnote_plugin_tooltip_text:hover,.main-content .footnote_referrer,.main-content .footnote_referrer:hover,.main-content .footnote_referrer:link,.main-content .footnote_referrer>a,.main-content .footnote_referrer>a:hover,.main-content .footnote_referrer>a:link{text-decoration:none!important;border-bottom:none!important;box-shadow:none!important}.footnote_plugin_tooltip_text{line-height:0;position:relative!important;cursor:pointer}.footnotes_reference_container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.footnote_container_prepare{display:block!important;padding-top:24px!important}.footnote_container_prepare>p{line-height:1.3!important;margin-top:1em!important;margin-bottom:.25em!important;padding:0!important;font-weight:400!important;display:block!important;-webkit-margin-before:.83em!important;-webkit-margin-after:.83em!important;-webkit-margin-start:0!important;-webkit-margin-end:0!important;text-align:start!important;vertical-align:middle}.footnote_container_prepare>p>span:first-child,.footnote_container_prepare>p>span:nth-child(3){text-align:start!important;font-size:1.5em!important}.footnote_reference_container_collapse_button{cursor:pointer;padding:0 .5em;font-size:1.3em!important;vertical-align:2px;text-decoration:none!important}h2>.footnote_reference_container_collapse_button,h3>.footnote_reference_container_collapse_button,h4>.footnote_reference_container_collapse_button,h5>.footnote_reference_container_collapse_button,h6>.footnote_reference_container_collapse_button{font-size:inherit!important}.footnote_container_prepare>p>span:last-child a,.footnote_reference_container_collapse_button a{text-decoration:none!important}.footnote-reference-container,.footnotes_table{width:100%;border:none}.footnote_plugin_index,.footnote_plugin_index_combi,.footnote_plugin_symbol,.footnote_plugin_text{border:none!important;text-align:start!important;vertical-align:top!important;padding:5px 6px 10px 0!important}html[dir=rtl] .footnote_plugin_index,html[dir=rtl] .footnote_plugin_index_combi,html[dir=rtl] .footnote_plugin_symbol,html[dir=rtl] .footnote_plugin_text{padding:5px 0 10px 6px!important}.footnote_backlink,.footnote_backlink:link,.footnote_plugin_link,.footnote_plugin_link:link,.main-content .footnote_backlink,.main-content .footnote_backlink:link,.main-content .footnote_plugin_link,.main-content .footnote_plugin_link:link{text-decoration:none!important;border-bottom:none!important}.footnote_backlink,.footnote_plugin_link{white-space:nowrap}.footnote_backlink,.footnote_index,.pointer{cursor:pointer}.footnote_backlink:hover,.footnote_plugin_link:hover,.footnote_plugin_text a:hover{text-decoration:unset;text-decoration:underline}.footnote_plugin_text{width:unset}.footnote_plugin_index,.footnote_plugin_index_combi{max-width:100px;width:2.5em}@media only screen and (max-width:768px){.footnote_plugin_index,.footnote_plugin_index_combi{max-width:80px}}.footnotes_reference_container{page-break-inside:avoid}@media print{.footnote_index_arrow,.footnote_reference_container_collapse_button,.footnote_tooltip{display:none}.footnote_plugin_tooltip_text{color:inherit}.footnote_plugin_index a,.footnote_plugin_index_combi a{color:inherit;text-decoration:none!important}div.post-meta-edit-link-wrapper{display:none}}.footnotes_logo,.footnotes_logo:hover{text-decoration:none;font-weight:400}.footnotes_logo_part1{color:#2bb975}.footnotes_logo_part2{color:#545f5a}.main-content,.site-main,div.hentry,main{margin:0 auto}@media (max-width:575px){.main-content,.site-main,div.hentry,main{padding:0 10px}}@media (min-width:576px){.main-content,.site-main,div.hentry,main{max-width:500px}}@media (min-width:768px){.main-content,.site-main,div.hentry,main{max-width:600px}}@media (min-width:992px){.main-content,.site-main,div.hentry,main{max-width:800px}}@media (min-width:1200px){.main-content,.site-main,div.hentry,main{max-width:960px}}
|
1
css/tmp/settings.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.footnotes_logo_heading{display:inline-block;float:left;position:absolute;text-decoration:none;font-weight:400}.footnotes_logo_part1_heading{left:20px;color:#2bb975}.footnotes_logo_part2_heading{left:51px;color:#545f5a}.footnotes_heart_heading{color:#ff6d3b;font-weight:700;position:absolute;left:96px}.postbox-header{position:relative;padding:0 20px}#footnote_inputfield_love,#footnote_inputfield_readon_label,#footnote_inputfield_references_label{padding-left:8px!important;padding-right:8px!important;width:80%!important}#footnote_inputfield_reference_container_place{width:310px}#footnote_inputfield_counter_style,#footnotes_inputfield_page_layout_support{width:505px}#footnote_inputfield_custom_mouse_over_box_excerpt_length,#footnote_inputfield_placeholder_end,#footnote_inputfield_placeholder_start{width:180px}#footnote_inputfield_placeholder_end_user_defined,#footnote_inputfield_placeholder_start_user_defined{width:320px}#footnote_inputfield_combine_identical,#footnote_inputfield_custom_mouse_over_box_border_radius,#footnote_inputfield_custom_mouse_over_box_border_width,#footnote_inputfield_custom_mouse_over_box_excerpt_enabled,#footnote_inputfield_custom_mouse_over_box_max_width,#footnote_inputfield_custom_mouse_over_box_offset_x,#footnote_inputfield_custom_mouse_over_box_offset_y,#footnotes_inputfield_alternative_mouse_over_box_offset_x,#footnotes_inputfield_alternative_mouse_over_box_offset_y,#footnotes_inputfield_alternative_mouse_over_box_width,#footnotes_inputfield_mouse_over_box_fade_in_delay,#footnotes_inputfield_mouse_over_box_fade_in_duration,#footnotes_inputfield_mouse_over_box_fade_out_delay,#footnotes_inputfield_mouse_over_box_fade_out_duration,#footnotes_inputfield_scroll_duration,#footnotes_inputfield_scroll_offset{width:80px}#footnote_inputfield_custom_hyperlink_symbol,#footnotes_inputfield_backlinks_separator_option,#footnotes_inputfield_backlinks_terminator_option{width:230px}#footnotes_inputfield_backlinks_column_max_width_scalar,#footnotes_inputfield_backlinks_column_width_scalar,#footnotes_inputfield_mouse_over_box_font_size_scalar,#footnotes_inputfield_reference_container_bottom_margin,#footnotes_inputfield_reference_container_top_margin{width:85px}#footnotes_inputfield_backlinks_column_max_width_unit,#footnotes_inputfield_backlinks_column_width_unit,#footnotes_inputfield_mouse_over_box_font_size_unit{width:140px}label{display:inline-block}.postbox>h3{height:32px!important;line-height:32px!important}.postbox>h3>span{padding:0 10px}.postbox>.inside>table{border:none!important}.postbox>.inside>table>tbody>tr>td:first-child{width:15%!important;font-weight:700!important}.footnote_placeholder_box_container{text-align:center!important}span.footnote_highlight_placeholder{font-weight:700!important;padding:0 8px!important}.footnote_placeholder_box_example{border:2px solid #2bb975!important;border-radius:4px!important;padding:16px 0!important;width:50%!important;display:block!important;margin:20px auto!important;text-align:center!important}.expert_lookup tr td:first-child,.expert_lookup tr th:first-child{width:170px!important}.expert_lookup tr td:nth-child(2),.expert_lookup tr th:nth-child(2){width:65px!important}.expert_lookup tr td:nth-child(3),.expert_lookup tr th:nth-child(3){width:200px!important}.expert_lookup tr td:nth-child(3) input{width:190px}.expert_lookup tr td:last-child,.expert_lookup tr th:last-child{white-space:nowrap}#customize_css_new tr td:first-child{width:38%!important;font-weight:400!important}.customize_css_new tr td:first-child span:first-child{font-weight:700!important}.customize_css_new .list{padding-top:10px}.customize_css_new .list p{font-family:monospace;padding:0 10px;text-indent:-10px;margin:.5em 0}#footnote_inputfield_custom_css_new{height:500px}#footnote_inputfield_custom_css,#footnote_inputfield_custom_css_new{width:96%;resize:both;overflow:scroll;font-family:monospace}.footnotes_notice{font-style:italic;display:inline-block;text-align:end}.footnotes_description{padding:0 4%}.footnotes_description p{font-size:1.06em;font-style:italic}
|
|
@ -1,276 +0,0 @@
|
|||
customized-documentation-schema.txt
|
||||
|
||||
|
||||
Plugin Footnotes for WordPress, v2.5.4 and later
|
||||
|
||||
|
||||
Customized documentation schema
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
|
||||
In community-based, open source projects, it is important to comprehensively
|
||||
recognize, acknowledge and document how developers, testers and users helped
|
||||
build the product.
|
||||
https://wordpress.org/support/topic/great-tool-1549/#post-14039334
|
||||
|
||||
Note: Per the WordPress Coding Standards, the '@author' tag must not be used.
|
||||
https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/
|
||||
|
||||
PHPDOC tag: Role: Acknowledgment in the changelog:
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
@contributor Provided code. “thanks to @USERNAME code contribution.”
|
||||
@contributor Provided design. “thanks to @USERNAME design contribution.”
|
||||
@contributor Provided content. “thanks to @USERNAME design contribution.” (!)
|
||||
|
||||
@reporter Reported a bug. “thanks to @USERNAME bug report.”
|
||||
@reporter Reported an issue. “thanks to @USERNAME issue report.”
|
||||
@reporter Requested a feature. “thanks to @USERNAME issue report.” (!)
|
||||
@reporter Provided feedback. “thanks to @USERNAME feedback.”
|
||||
@reporter Provided an example. “thanks to @USERNAME example provision.”
|
||||
|
||||
@user Allowed insight. “thanks to @USERNAME usage.”
|
||||
|
||||
@accountable Edited the codebase. -
|
||||
|
||||
@committer Uploaded a version. -
|
||||
|
||||
|
||||
PHPDOC tags & custom tags
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
|
||||
▲ Source for standard tags:
|
||||
https://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.pkg.html
|
||||
|
||||
@access
|
||||
@author
|
||||
@copyright
|
||||
@deprecated
|
||||
@example
|
||||
@ignore
|
||||
@internal
|
||||
@link
|
||||
@see
|
||||
@since
|
||||
@tutorial
|
||||
@version
|
||||
inline {@internal}}
|
||||
inline {@inheritdoc}
|
||||
inline {@link}
|
||||
|
||||
Sidepane:
|
||||
|
||||
phpDocumentor tags
|
||||
@abstract
|
||||
@access
|
||||
@author
|
||||
@category
|
||||
@copyright
|
||||
@deprecated
|
||||
@example
|
||||
@final
|
||||
@filesource
|
||||
@global
|
||||
@ignore
|
||||
@internal
|
||||
@license
|
||||
@link
|
||||
@method
|
||||
@name
|
||||
@package
|
||||
@param
|
||||
@property
|
||||
@return
|
||||
@see
|
||||
@since
|
||||
@static
|
||||
@staticvar
|
||||
@subpackage
|
||||
@todo
|
||||
@tutorial
|
||||
@uses
|
||||
@var
|
||||
@version
|
||||
|
||||
phpDocumentor Inline tags
|
||||
inline {@example}
|
||||
inline {@id}
|
||||
inline {@internal}}
|
||||
inline {@inheritdoc}
|
||||
inline {@link}
|
||||
inline {@source}
|
||||
inline {@toc}
|
||||
inline {@tutorial}
|
||||
|
||||
|
||||
▲ Tags required/recommended by WordPress coding standard:
|
||||
https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/
|
||||
|
||||
Note: The only tag added from draft PSR-5 recommendations is @type.
|
||||
https://stackoverflow.com/questions/48202550/source-of-type-tag-in-docblock
|
||||
|
||||
@access
|
||||
@author [DO NOT USE]
|
||||
@copyright
|
||||
@deprecated
|
||||
@global
|
||||
@ignore
|
||||
@internal
|
||||
@license
|
||||
@link
|
||||
@method
|
||||
@package
|
||||
@param
|
||||
@return
|
||||
@see
|
||||
@since
|
||||
@static
|
||||
@staticvar
|
||||
@subpackage
|
||||
@todo
|
||||
@type
|
||||
@uses
|
||||
@var
|
||||
|
||||
|
||||
▲ Tags added by PHPStan:
|
||||
https://phpstan.org/blog/generics-in-php-using-phpdocs
|
||||
|
||||
@extends
|
||||
@implements
|
||||
@template
|
||||
|
||||
|
||||
▲ Tags supported in Atom TextMate found in VS Code 1.47.3:
|
||||
/usr/share/code/resources/app/extensions/php/syntaxes/php.tmLanguage.json
|
||||
Note the 4 tags appended to the list, hence initially missing.
|
||||
|
||||
@api
|
||||
@abstract
|
||||
@author
|
||||
@category
|
||||
@copyright
|
||||
@example
|
||||
@global
|
||||
@inherit[Dd]oc
|
||||
@internal
|
||||
@license
|
||||
@link
|
||||
@method
|
||||
@property(-(read|write))?
|
||||
@package
|
||||
@param
|
||||
@return
|
||||
@see
|
||||
@since
|
||||
@source
|
||||
@static
|
||||
@subpackage
|
||||
@throws
|
||||
@todo
|
||||
@var
|
||||
@version
|
||||
@uses
|
||||
@deprecated
|
||||
@final
|
||||
@ignore
|
||||
|
||||
MISSING TAGS:
|
||||
|
||||
- wrt phpDocumentor:
|
||||
@access
|
||||
@filesource
|
||||
@id
|
||||
@name
|
||||
@staticvar
|
||||
@toc
|
||||
@tutorial
|
||||
@usedby
|
||||
|
||||
- wrt WordPress:
|
||||
@type
|
||||
|
||||
- wrt PHPStan:
|
||||
@extends
|
||||
@implements
|
||||
@template
|
||||
|
||||
|
||||
▲ up-to-date list (standard/WP/PHPStan, custom):
|
||||
|
||||
@api
|
||||
@abstract
|
||||
@access
|
||||
@author
|
||||
@category
|
||||
@copyright
|
||||
@deprecated
|
||||
@example
|
||||
@extends
|
||||
@filesource
|
||||
@final
|
||||
@global
|
||||
@id
|
||||
@ignore
|
||||
@implements
|
||||
@inherit[Dd]oc
|
||||
@internal
|
||||
@license
|
||||
@link
|
||||
@method
|
||||
@name
|
||||
@package
|
||||
@param
|
||||
@property(-(read|write))?
|
||||
@return
|
||||
@see
|
||||
@since
|
||||
@source
|
||||
@static
|
||||
@staticvar
|
||||
@subpackage
|
||||
@template
|
||||
@throws
|
||||
@toc
|
||||
@todo
|
||||
@tutorial
|
||||
@type
|
||||
@usedby
|
||||
@uses
|
||||
@var
|
||||
@version
|
||||
|
||||
@accountable
|
||||
@bib
|
||||
@biblio
|
||||
@callback
|
||||
@commit
|
||||
@committer
|
||||
@contributor
|
||||
@courtesy
|
||||
@date
|
||||
@datetime
|
||||
@lastmodified
|
||||
@modified
|
||||
@publisher
|
||||
@reporter
|
||||
@revision
|
||||
@timestamp
|
||||
@user
|
||||
|
||||
|
||||
▲ Config (original, missing and added tags), example of VS Code.
|
||||
/usr/share/code/resources/app/extensions/php/syntaxes/php.tmLanguage.json
|
||||
|
||||
original:
|
||||
abstract|api|author|category|copyright|deprecated|example|final|global|ignore|inherit[Dd]oc|internal|license|link|method|package|param|property(-(read|write))?|return|see|since|source|static|subpackage|throws|todo|uses|var|version
|
||||
|
||||
missing:
|
||||
|access|filesource|id|name|staticvar|toc|tutorial|usedby
|
||||
|
||||
WordPress:
|
||||
|type
|
||||
|
||||
PHPStan:
|
||||
|extends|implements|template
|
||||
|
||||
custom:
|
||||
|accountable|bib|biblio|callback|commit|committer|contributor|courtesy|date|datetime|lastmodified|modified|publisher|reporter|revision|timestamp|user
|
|
@ -1,45 +0,0 @@
|
|||
customized-template-stack.txt
|
||||
|
||||
|
||||
Plugin Footnotes for WordPress, v2.5.3 and later
|
||||
|
||||
|
||||
A. Customized template parts
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
|
||||
@since 2.2.6 Adding: Templates: support for custom templates in sibling folder, thanks to @misfist issue report.
|
||||
@since 2.5.0 Adding: Templates: Enable template location stack, thanks to @misfist issue report and code contribution.
|
||||
|
||||
|
||||
Priority order:
|
||||
1. active theme
|
||||
2. sibling folder
|
||||
3. internal
|
||||
|
||||
See footnotes/class/template.php:67..116
|
||||
|
||||
|
||||
1. Active theme
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
Please create a folder 'templates/footnotes/' in your child theme and
|
||||
store all your public custom templates for Footnotes directly therein.
|
||||
|
||||
Existing homonymous templates are loaded instead of their counterparts in
|
||||
wp-content/plugins/footnotes/templates/public/.
|
||||
|
||||
|
||||
2. Sibling folder
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
Please make a sibling of the "footnotes" folder called 'footnotes-custom' and
|
||||
the same internal structure and file names as 'footnotes/templates/public/'.
|
||||
|
||||
Example for custom tooltips:
|
||||
|
||||
footnotes-custom
|
||||
└── templates
|
||||
└── public
|
||||
├── footnote.html
|
||||
└── tooltip.html
|
||||
|
||||
Note: The timing parameters in the inline jQuery script 'tooltip.html' are already
|
||||
configurable in the dashboard > Referrers and tooltips > Tooltip timing.
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Config
|
||||
Footnotes_Config
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
@ -121,42 +121,42 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL">C_STR_LOVE_SYMBOL</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL">C_STR_LOVE_SYMBOL</a>
|
||||
<span>
|
||||
= '<span style="color:#ff6d3b; font-weight:bold;">&hearts;</span>' </span>
|
||||
</dt>
|
||||
<dd>Html tag for the LOVE symbol.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL_HEADING">C_STR_LOVE_SYMBOL_HEADING</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL_HEADING">C_STR_LOVE_SYMBOL_HEADING</a>
|
||||
<span>
|
||||
= '<span class="footnotes_heart_heading">&hearts;</span>' </span>
|
||||
</dt>
|
||||
<dd>HTML code for the 'love' symbol used in dashboard heading</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_NO_LOVE_SLUG">C_STR_NO_LOVE_SLUG</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_NO_LOVE_SLUG">C_STR_NO_LOVE_SLUG</a>
|
||||
<span>
|
||||
= '[[no footnotes: love]]' </span>
|
||||
</dt>
|
||||
<dd>Short code to DON'T display the 'LOVE ME' slug on certain pages.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_HEADING_NAME">C_STR_PLUGIN_HEADING_NAME</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_HEADING_NAME">C_STR_PLUGIN_HEADING_NAME</a>
|
||||
<span>
|
||||
= '<span class="footnotes_logo_heading footnotes_logo_part1_heading">foot</span><span class="footnotes_logo_heading footnotes_logo_part2_heading">notes</span>' </span>
|
||||
</dt>
|
||||
<dd>Public Plugin name for dashboard heading</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_NAME">C_STR_PLUGIN_NAME</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_NAME">C_STR_PLUGIN_NAME</a>
|
||||
<span>
|
||||
= 'footnotes' </span>
|
||||
</dt>
|
||||
<dd>Internal Plugin name.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_PUBLIC_NAME">C_STR_PLUGIN_PUBLIC_NAME</a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_PUBLIC_NAME">C_STR_PLUGIN_PUBLIC_NAME</a>
|
||||
<span>
|
||||
= '<span class="footnotes_logo footnotes_logo_part1">foot</span><span class="footnotes_logo footnotes_logo_part2">notes</span>' </span>
|
||||
</dt>
|
||||
|
@ -170,16 +170,16 @@
|
|||
<section class="phpdocumentor-constants">
|
||||
<h3 class="phpdocumentor-elements__header" id="constants">
|
||||
Constants
|
||||
<a href="classes/MCI-Footnotes-Config.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_LOVE_SYMBOL">
|
||||
C_STR_LOVE_SYMBOL
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">56</span>
|
||||
</aside>
|
||||
|
@ -217,11 +217,11 @@
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_LOVE_SYMBOL_HEADING">
|
||||
C_STR_LOVE_SYMBOL_HEADING
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL_HEADING" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_LOVE_SYMBOL_HEADING" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">64</span>
|
||||
</aside>
|
||||
|
@ -259,11 +259,11 @@
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_NO_LOVE_SLUG">
|
||||
C_STR_NO_LOVE_SLUG
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_NO_LOVE_SLUG" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_NO_LOVE_SLUG" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">72</span>
|
||||
</aside>
|
||||
|
@ -301,11 +301,11 @@
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_PLUGIN_HEADING_NAME">
|
||||
C_STR_PLUGIN_HEADING_NAME
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_HEADING_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_HEADING_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">48</span>
|
||||
</aside>
|
||||
|
@ -348,11 +348,11 @@ that isn’t translated, and dropping the logo in another, translatable heading.
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_PLUGIN_NAME">
|
||||
C_STR_PLUGIN_NAME
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">24</span>
|
||||
</aside>
|
||||
|
@ -390,11 +390,11 @@ that isn’t translated, and dropping the logo in another, translatable heading.
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_PLUGIN_PUBLIC_NAME">
|
||||
C_STR_PLUGIN_PUBLIC_NAME
|
||||
<a href="classes/MCI-Footnotes-Config.html#constant_C_STR_PLUGIN_PUBLIC_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#constant_C_STR_PLUGIN_PUBLIC_NAME" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/config.php"><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/config.php"><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">34</span>
|
||||
</aside>
|
||||
|
@ -448,7 +448,7 @@ that isn’t translated, and dropping the logo in another, translatable heading.
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Config.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Config.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Convert
|
||||
Footnotes_Convert
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
@ -121,49 +121,49 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_debug">debug()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_debug">debug()</a>
|
||||
<span>
|
||||
: void </span>
|
||||
</dt>
|
||||
<dd>Displays a Variable.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_get_arrow">get_arrow()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_get_arrow">get_arrow()</a>
|
||||
<span>
|
||||
: array<string|int, mixed>|string </span>
|
||||
</dt>
|
||||
<dd>Get a html Array short code depending on Arrow-Array key index.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_index">index()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_index">index()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Converts a integer into the user-defined counter style for the footnotes.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_bool">to_bool()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_bool">to_bool()</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Converts a string depending on its value to a boolean.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_arabic_leading">to_arabic_leading()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_arabic_leading">to_arabic_leading()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Converts an integer to a leading-0 integer.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_latin">to_latin()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_latin">to_latin()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Converts an integer into latin ascii characters, either lower or upper-case.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_romanic">to_romanic()</a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_romanic">to_romanic()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
|
@ -180,7 +180,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Convert.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -190,10 +190,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_debug">
|
||||
debug()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_debug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_debug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">196</span>
|
||||
</aside>
|
||||
|
@ -251,10 +251,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_arrow">
|
||||
get_arrow()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_get_arrow" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_get_arrow" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">172</span>
|
||||
</aside>
|
||||
|
@ -313,10 +313,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_index">
|
||||
index()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_index" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_index" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">30</span>
|
||||
</aside>
|
||||
|
@ -395,10 +395,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_to_bool">
|
||||
to_bool()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_bool" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_bool" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">149</span>
|
||||
</aside>
|
||||
|
@ -457,10 +457,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_to_arabic_leading">
|
||||
to_arabic_leading()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_arabic_leading" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_arabic_leading" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">87</span>
|
||||
</aside>
|
||||
|
@ -519,10 +519,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_to_latin">
|
||||
to_latin()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_latin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_latin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">57</span>
|
||||
</aside>
|
||||
|
@ -590,10 +590,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_to_romanic">
|
||||
to_romanic()
|
||||
<a href="classes/MCI-Footnotes-Convert.html#method_to_romanic" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#method_to_romanic" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/convert.php"><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/convert.php"><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">106</span>
|
||||
</aside>
|
||||
|
@ -679,7 +679,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Convert.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Convert.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Hooks
|
||||
Footnotes_Hooks
|
||||
|
||||
|
||||
|
||||
|
@ -83,12 +83,12 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/hooks.php"><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">15</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Registers all WordPress Hooks and executes them on demand.</p>
|
||||
<p class="phpdocumentor-summary">Registers all WordPress hooks and executes them on demand.</p>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
|
@ -121,40 +121,33 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_activate_plugin">activate_plugin()</a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_activate_plugin">activate_plugin()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Executed when the Plugin gets activated.</dd>
|
||||
<dd>Executes when the Plugin is activated.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_deactivate_plugin">deactivate_plugin()</a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_deactivate_plugin">deactivate_plugin()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Executed when the Plugin gets deactivated.</dd>
|
||||
<dd>Executes when the Plugin is deactivated.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_plugin_links">plugin_links()</a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_get_plugin_links">get_plugin_links()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
: array<string|int, string> </span>
|
||||
</dt>
|
||||
<dd>Add Links to the Plugin in the "installed Plugins" page.</dd>
|
||||
<dd>Appends the Plugin links for display in the dashboard “Plugins” page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_register_hooks">register_hooks()</a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_register_hooks">register_hooks()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers all WordPress hooks.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_uninstall_plugin">uninstall_plugin()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Executed when the Plugin gets uninstalled.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
@ -166,7 +159,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Hooks.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -176,21 +169,22 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_activate_plugin">
|
||||
activate_plugin()
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_activate_plugin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_activate_plugin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/hooks.php"><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">33</span>
|
||||
<span class="phpdocumentor-element-found-in__line">35</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Executed when the Plugin gets activated.</p>
|
||||
<p class="phpdocumentor-summary">Executes when the Plugin is activated.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">activate_plugin</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
<section class="phpdocumentor-description"><p>Currently a no-op placeholder.</p>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
@ -225,21 +219,22 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_deactivate_plugin">
|
||||
deactivate_plugin()
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_deactivate_plugin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_deactivate_plugin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/hooks.php"><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">42</span>
|
||||
<span class="phpdocumentor-element-found-in__line">46</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Executed when the Plugin gets deactivated.</p>
|
||||
<p class="phpdocumentor-summary">Executes when the Plugin is deactivated.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">deactivate_plugin</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
<section class="phpdocumentor-description"><p>Currently a no-op placeholder.</p>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
@ -272,41 +267,32 @@
|
|||
-public
|
||||
-static "
|
||||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_plugin_links">
|
||||
plugin_links()
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_plugin_links" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_plugin_links">
|
||||
get_plugin_links()
|
||||
<a href="classes/Footnotes-Hooks.html#method_get_plugin_links" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/hooks.php"><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">74</span>
|
||||
<span class="phpdocumentor-element-found-in__line">57</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Add Links to the Plugin in the "installed Plugins" page.</p>
|
||||
<p class="phpdocumentor-summary">Appends the Plugin links for display in the dashboard “Plugins” page.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">plugin_links</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">array<string|int, mixed> </span><span class="phpdocumentor-signature__argument__name">$p_arr_links</span></span><span class="phpdocumentor-signature__argument"><span>, </span><span class="phpdocumentor-signature__argument__return-type">string </span><span class="phpdocumentor-signature__argument__name">$p_str_plugin_file_name</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">array<string|int, mixed></span></code>
|
||||
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">get_plugin_links</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">array<string|int, mixed> </span><span class="phpdocumentor-signature__argument__name">$plugin_links</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">array<string|int, string></span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
|
||||
<dl class="phpdocumentor-argument-list">
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_arr_links</span>
|
||||
<span class="phpdocumentor-signature__argument__name">$plugin_links</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">array<string|int, mixed></span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Current Links.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_str_plugin_file_name</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">string</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Plugins init file name.</p>
|
||||
<section class="phpdocumentor-description"><p>The WP-default set of links to display.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
|
@ -330,9 +316,10 @@
|
|||
</dl>
|
||||
|
||||
<h5 class="phpdocumentor-return-value__heading">Return values</h5>
|
||||
<span class="phpdocumentor-signature__response_type">array<string|int, mixed></span>
|
||||
<span class="phpdocumentor-signature__response_type">array<string|int, string></span>
|
||||
—
|
||||
<section class="phpdocumentor-description"></section>
|
||||
<section class="phpdocumentor-description"><p>The full set of links to display.</p>
|
||||
</section>
|
||||
|
||||
|
||||
</article>
|
||||
|
@ -344,10 +331,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_hooks">
|
||||
register_hooks()
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Hooks.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/hooks.php"><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">22</span>
|
||||
</aside>
|
||||
|
@ -384,75 +371,6 @@
|
|||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
|
||||
</article>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
-method
|
||||
-public
|
||||
-static "
|
||||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_uninstall_plugin">
|
||||
uninstall_plugin()
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#method_uninstall_plugin" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/hooks.php"><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">55</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Executed when the Plugin gets uninstalled.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">uninstall_plugin</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
Tags
|
||||
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h5>
|
||||
<dl class="phpdocumentor-tag-list">
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">1.5.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">2.2.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"><p>this function is not called any longer when deleting the plugin.
|
||||
Note: clear_all() didn't actually work.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">see</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>class/settings.php</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<h5 class="phpdocumentor-return-value__heading">Return values</h5>
|
||||
<span class="phpdocumentor-signature__response_type">mixed</span>
|
||||
—
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
|
@ -470,7 +388,7 @@ Note: clear_all() didn't actually work.</p>
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Hooks.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Hooks.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Language
|
||||
Footnotes_Language
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/language.php"><a href="files/class-language.html"><abbr title="class/language.php">language.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/language.php"><a href="files/src-class-language.html"><abbr title="src/class/language.php">language.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">18</span>
|
||||
</aside>
|
||||
|
@ -121,21 +121,21 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_load_text_domain">load_text_domain()</a>
|
||||
<a href="classes/Footnotes-Language.html#method_load_text_domain">load_text_domain()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Loads the text domain for current WordPress language if exists.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_register_hooks">register_hooks()</a>
|
||||
<a href="classes/Footnotes-Language.html#method_register_hooks">register_hooks()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Register WordPress Hook.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_load">load()</a>
|
||||
<a href="classes/Footnotes-Language.html#method_load">load()</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
|
@ -152,7 +152,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Language.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Language.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -162,10 +162,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_load_text_domain">
|
||||
load_text_domain()
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_load_text_domain" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Language.html#method_load_text_domain" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/language.php"><a href="files/class-language.html"><abbr title="class/language.php">language.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/language.php"><a href="files/src-class-language.html"><abbr title="src/class/language.php">language.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">61</span>
|
||||
</aside>
|
||||
|
@ -271,10 +271,10 @@ In the case of get_locale(), $args is empty.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_hooks">
|
||||
register_hooks()
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Language.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/language.php"><a href="files/class-language.html"><abbr title="class/language.php">language.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/language.php"><a href="files/src-class-language.html"><abbr title="src/class/language.php">language.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">25</span>
|
||||
</aside>
|
||||
|
@ -320,10 +320,10 @@ In the case of get_locale(), $args is empty.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_load">
|
||||
load()
|
||||
<a href="classes/MCI-Footnotes-Language.html#method_load" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Language.html#method_load" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/language.php"><a href="files/class-language.html"><abbr title="class/language.php">language.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/language.php"><a href="files/src-class-language.html"><abbr title="src/class/language.php">language.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">90</span>
|
||||
</aside>
|
||||
|
@ -428,7 +428,7 @@ In the case of get_locale(), $args is empty.</p>
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Language.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Language.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Layout_Engine
|
||||
Footnotes_Layout_Engine
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">22</span>
|
||||
</aside>
|
||||
|
@ -121,189 +121,189 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#property_a_arr_sections">$a_arr_sections</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#property_a_arr_sections">$a_arr_sections</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Stores all Sections for the child sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#property_a_str_sub_page_hook">$a_str_sub_page_hook</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#property_a_str_sub_page_hook">$a_str_sub_page_hook</a>
|
||||
<span>
|
||||
: null|string </span>
|
||||
</dt>
|
||||
<dd>Stores the Hook connection string for the child sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_description">description()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_description">description()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Output the Description of a section. May be overwritten in any section.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_display_content">display_content()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_display_content">display_content()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Displays the content of specific sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_priority">get_priority()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_priority">get_priority()</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
<dd>Returns a Priority index. Lower numbers have a higher Priority.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_sections">register_sections()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_sections">register_sections()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers all sections for a sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_sub_page">register_sub_page()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_sub_page">register_sub_page()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers a sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_checkbox">add_checkbox()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_checkbox">add_checkbox()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for an input [type = checkbox].</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_color_selection">add_color_selection()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_color_selection">add_color_selection()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for an input [type = text] with color selection class.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_label">add_label()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_label">add_label()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for an input/select label.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_line_space">add_line_space()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_line_space">add_line_space()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns a line break to have a space between two lines.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_meta_box">add_meta_box()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_meta_box">add_meta_box()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Returns an array describing a meta box.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_newline">add_newline()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_newline">add_newline()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns a line break to start a new line.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_num_box">add_num_box()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_num_box">add_num_box()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for an input [type = num].</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_section">add_section()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_section">add_section()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Returns an array describing a sub page section.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_select_box">add_select_box()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_select_box">add_select_box()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for a select box.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_text">add_text()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_text">add_text()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns a simple text inside html <span> text.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_text_box">add_text_box()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_text_box">add_text_box()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for an input [type = text].</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_textarea">add_textarea()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_textarea">add_textarea()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the html tag for a text area.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_meta_boxes">get_meta_boxes()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_meta_boxes">get_meta_boxes()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Returns an array of all registered meta boxes.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sections">get_sections()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sections">get_sections()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Returns an array of all registered sections for a sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sub_page_slug">get_sub_page_slug()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sub_page_slug">get_sub_page_slug()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the unique slug of the child sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sub_page_title">get_sub_page_title()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sub_page_title">get_sub_page_title()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the title of the child sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_load_setting">load_setting()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_load_setting">load_setting()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Loads specific setting and returns an array with the keys [id, name, value].</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_append_scripts">append_scripts()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_append_scripts">append_scripts()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Append javascript and css files for specific sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_meta_boxes">register_meta_boxes()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_meta_boxes">register_meta_boxes()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers all Meta boxes for a sub page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_save_settings">save_settings()</a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_save_settings">save_settings()</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
|
@ -319,7 +319,7 @@
|
|||
<section class="phpdocumentor-properties">
|
||||
<h3 class="phpdocumentor-elements__header" id="properties">
|
||||
Properties
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="
|
||||
|
@ -330,12 +330,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_arr_sections">
|
||||
$a_arr_sections
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#property_a_arr_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#property_a_arr_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">38</span>
|
||||
</aside>
|
||||
|
@ -377,12 +377,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_sub_page_hook">
|
||||
$a_str_sub_page_hook
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#property_a_str_sub_page_hook" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#property_a_str_sub_page_hook" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">30</span>
|
||||
</aside>
|
||||
|
@ -421,7 +421,7 @@ ull</span></code>
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -431,10 +431,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_description">
|
||||
description()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">331</span>
|
||||
</aside>
|
||||
|
@ -480,10 +480,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_display_content">
|
||||
display_content()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_display_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_display_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">231</span>
|
||||
</aside>
|
||||
|
@ -529,10 +529,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_priority">
|
||||
get_priority()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_priority" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_priority" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">46</span>
|
||||
</aside>
|
||||
|
@ -578,10 +578,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_sections">
|
||||
register_sections()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">149</span>
|
||||
</aside>
|
||||
|
@ -627,10 +627,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_sub_page">
|
||||
register_sub_page()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_sub_page" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_sub_page" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">123</span>
|
||||
</aside>
|
||||
|
@ -676,10 +676,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_checkbox">
|
||||
add_checkbox()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_checkbox" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_checkbox" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">459</span>
|
||||
</aside>
|
||||
|
@ -737,10 +737,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_color_selection">
|
||||
add_color_selection()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_color_selection" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_color_selection" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">535</span>
|
||||
</aside>
|
||||
|
@ -798,10 +798,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_label">
|
||||
add_label()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_label" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_label" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">406</span>
|
||||
</aside>
|
||||
|
@ -868,10 +868,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_line_space">
|
||||
add_line_space()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_line_space" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_line_space" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">383</span>
|
||||
</aside>
|
||||
|
@ -917,10 +917,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_meta_box">
|
||||
add_meta_box()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_meta_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_meta_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">109</span>
|
||||
</aside>
|
||||
|
@ -1006,10 +1006,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_newline">
|
||||
add_newline()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_newline" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_newline" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">373</span>
|
||||
</aside>
|
||||
|
@ -1055,10 +1055,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_num_box">
|
||||
add_num_box()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_num_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_num_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">559</span>
|
||||
</aside>
|
||||
|
@ -1154,10 +1154,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_section">
|
||||
add_section()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_section" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_section" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">90</span>
|
||||
</aside>
|
||||
|
@ -1243,10 +1243,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_select_box">
|
||||
add_select_box()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_select_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_select_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">487</span>
|
||||
</aside>
|
||||
|
@ -1354,10 +1354,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_text">
|
||||
add_text()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">394</span>
|
||||
</aside>
|
||||
|
@ -1415,10 +1415,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_text_box">
|
||||
add_text_box()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_text_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_text_box" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">434</span>
|
||||
</aside>
|
||||
|
@ -1503,10 +1503,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_add_textarea">
|
||||
add_textarea()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_add_textarea" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_add_textarea" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">517</span>
|
||||
</aside>
|
||||
|
@ -1564,10 +1564,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_meta_boxes">
|
||||
get_meta_boxes()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_meta_boxes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_meta_boxes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">78</span>
|
||||
</aside>
|
||||
|
@ -1613,10 +1613,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_sections">
|
||||
get_sections()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sections" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">70</span>
|
||||
</aside>
|
||||
|
@ -1662,10 +1662,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_sub_page_slug">
|
||||
get_sub_page_slug()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sub_page_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sub_page_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">54</span>
|
||||
</aside>
|
||||
|
@ -1711,10 +1711,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_sub_page_title">
|
||||
get_sub_page_title()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_get_sub_page_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_get_sub_page_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">62</span>
|
||||
</aside>
|
||||
|
@ -1760,10 +1760,10 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_load_setting">
|
||||
load_setting()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_load_setting" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_load_setting" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">357</span>
|
||||
</aside>
|
||||
|
@ -1888,10 +1888,10 @@ Removing this did not fix the quotation mark backslash escapement bug.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_append_scripts">
|
||||
append_scripts()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_append_scripts" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_append_scripts" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">190</span>
|
||||
</aside>
|
||||
|
@ -1937,10 +1937,10 @@ Removing this did not fix the quotation mark backslash escapement bug.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_meta_boxes">
|
||||
register_meta_boxes()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_register_meta_boxes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_register_meta_boxes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">169</span>
|
||||
</aside>
|
||||
|
@ -1998,10 +1998,10 @@ Removing this did not fix the quotation mark backslash escapement bug.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_save_settings">
|
||||
save_settings()
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#method_save_settings" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#method_save_settings" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/layout.php"><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/layout.php"><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">303</span>
|
||||
</aside>
|
||||
|
@ -2055,7 +2055,7 @@ Removing this did not fix the quotation mark backslash escapement bug.</p>
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Layout-Engine.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Engine.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Layout_Init
|
||||
Footnotes_Layout_Init
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">15</span>
|
||||
</aside>
|
||||
|
@ -121,49 +121,49 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_SLUG">C_STR_MAIN_MENU_SLUG</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_SLUG">C_STR_MAIN_MENU_SLUG</a>
|
||||
<span>
|
||||
= 'footnotes' </span>
|
||||
</dt>
|
||||
<dd>Slug for the Plugin main menu.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_TITLE">C_STR_MAIN_MENU_TITLE</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_TITLE">C_STR_MAIN_MENU_TITLE</a>
|
||||
<span>
|
||||
= 'ManFisher' </span>
|
||||
</dt>
|
||||
<dd>Plugin main menu name.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -private">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#property_settings_page">$settings_page</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#property_settings_page">$settings_page</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Contains the settings layoutEngine</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method___construct">__construct()</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method___construct">__construct()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Class Constructor. Initializes all WordPress hooks for the Plugin Settings.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_get_plugin_meta_information">get_plugin_meta_information()</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_get_plugin_meta_information">get_plugin_meta_information()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>AJAX call. returns a JSON string containing meta information about a specific WordPress Plugin.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_initialize_settings">initialize_settings()</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_initialize_settings">initialize_settings()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers the settings and initialises the settings page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_register_options_submenu">register_options_submenu()</a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_register_options_submenu">register_options_submenu()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
|
@ -177,16 +177,16 @@
|
|||
<section class="phpdocumentor-constants">
|
||||
<h3 class="phpdocumentor-elements__header" id="constants">
|
||||
Constants
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_MAIN_MENU_SLUG">
|
||||
C_STR_MAIN_MENU_SLUG
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_SLUG" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_SLUG" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">23</span>
|
||||
</aside>
|
||||
|
@ -224,11 +224,11 @@
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_MAIN_MENU_TITLE">
|
||||
C_STR_MAIN_MENU_TITLE
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_TITLE" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#constant_C_STR_MAIN_MENU_TITLE" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">31</span>
|
||||
</aside>
|
||||
|
@ -269,7 +269,7 @@
|
|||
<section class="phpdocumentor-properties">
|
||||
<h3 class="phpdocumentor-elements__header" id="properties">
|
||||
Properties
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="
|
||||
|
@ -280,12 +280,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_settings_page">
|
||||
$settings_page
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#property_settings_page" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#property_settings_page" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">39</span>
|
||||
</aside>
|
||||
|
@ -323,7 +323,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -333,10 +333,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method___construct">
|
||||
__construct()
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">46</span>
|
||||
</aside>
|
||||
|
@ -382,10 +382,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_plugin_meta_information">
|
||||
get_plugin_meta_information()
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_get_plugin_meta_information" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_get_plugin_meta_information" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">91</span>
|
||||
</aside>
|
||||
|
@ -431,10 +431,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_initialize_settings">
|
||||
initialize_settings()
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_initialize_settings" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_initialize_settings" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">62</span>
|
||||
</aside>
|
||||
|
@ -480,10 +480,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_options_submenu">
|
||||
register_options_submenu()
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#method_register_options_submenu" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#method_register_options_submenu" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/dashboard/init.php"><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/dashboard/init.php"><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">73</span>
|
||||
</aside>
|
||||
|
@ -546,7 +546,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Layout-Init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Layout-Init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Task
|
||||
Footnotes_Task
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">95</span>
|
||||
</aside>
|
||||
|
@ -121,252 +121,252 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_arr_footnotes">$a_arr_footnotes</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_arr_footnotes">$a_arr_footnotes</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Contains all footnotes found in the searched content.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_allow_love_me">$a_bool_allow_love_me</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_allow_love_me">$a_bool_allow_love_me</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Flag if the display of 'LOVE FOOTNOTES' is allowed on the current public page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_hard_links_enabled">$a_bool_hard_links_enabled</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_hard_links_enabled">$a_bool_hard_links_enabled</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Hard links for AMP compatibility.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_mirror_tooltip_text">$a_bool_mirror_tooltip_text</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_mirror_tooltip_text">$a_bool_mirror_tooltip_text</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Whether to mirror the tooltip text in the reference container.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_syntax_error_flag">$a_bool_syntax_error_flag</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_syntax_error_flag">$a_bool_syntax_error_flag</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Footnote delimiter syntax validation enabled.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_post_id">$a_int_post_id</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_post_id">$a_int_post_id</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
<dd>Autoload a.k.a. infinite scroll, or archive view.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_reference_container_id">$a_int_reference_container_id</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_reference_container_id">$a_int_reference_container_id</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
<dd>Multiple reference containers in content and widgets.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_scroll_offset">$a_int_scroll_offset</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_scroll_offset">$a_int_scroll_offset</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
<dd>Scroll offset.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_tooltip_shortcode_length">$a_int_tooltip_shortcode_length</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_tooltip_shortcode_length">$a_int_tooltip_shortcode_length</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
<dd>The tooltip delimiter shortcode length.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_end_tag">$a_str_end_tag</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_end_tag">$a_str_end_tag</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Footnote delimiter end short code.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_end_tag_regex">$a_str_end_tag_regex</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_end_tag_regex">$a_str_end_tag_regex</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Footnote delimiter end short code in regex format.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_footnote_link_slug">$a_str_footnote_link_slug</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_footnote_link_slug">$a_str_footnote_link_slug</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The footnote slug.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_close_tag">$a_str_link_close_tag</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_close_tag">$a_str_link_close_tag</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The closing tag.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_open_tag">$a_str_link_open_tag</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_open_tag">$a_str_link_open_tag</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The opening tag.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_span">$a_str_link_span</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_span">$a_str_link_span</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The span element name.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_post_container_id_compound">$a_str_post_container_id_compound</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_post_container_id_compound">$a_str_post_container_id_compound</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Contains the concatenated fragment ID base.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_prefix">$a_str_prefix</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_prefix">$a_str_prefix</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Prefix for the Footnote html element ID.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_referrer_link_slug">$a_str_referrer_link_slug</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_referrer_link_slug">$a_str_referrer_link_slug</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The referrer slug.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_start_tag">$a_str_start_tag</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_start_tag">$a_str_start_tag</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Footnote delimiter start short code.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_start_tag_regex">$a_str_start_tag_regex</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_start_tag_regex">$a_str_start_tag_regex</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Footnote delimiter start short code in regex format.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_tooltip_shortcode">$a_str_tooltip_shortcode</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_tooltip_shortcode">$a_str_tooltip_shortcode</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The tooltip delimiter shortcode.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -private">
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_ids_separator">$a_str_link_ids_separator</a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_ids_separator">$a_str_link_ids_separator</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>The slug and identifier separator.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_exec">exec()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_exec">exec()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces all footnotes that occur in the given content.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_content">footnotes_in_content()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_content">footnotes_in_content()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces footnotes in the content of the current page/post.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_excerpt">footnotes_in_excerpt()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_excerpt">footnotes_in_excerpt()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Processes existing excerpt or replaces it with a new one generated on the basis of the post.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_title">footnotes_in_title()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_title">footnotes_in_title()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces footnotes in the post/page title.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_widget_text">footnotes_in_widget_text()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_widget_text">footnotes_in_widget_text()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces footnotes in the content of the current widget.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_widget_title">footnotes_in_widget_title()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_widget_title">footnotes_in_widget_title()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces footnotes in the widget title.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_output_footer">footnotes_output_footer()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_output_footer">footnotes_output_footer()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Displays the 'LOVE FOOTNOTES' slug if enabled.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_output_head">footnotes_output_head()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_output_head">footnotes_output_head()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Outputs the custom css to the header of the public page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_generate_excerpt">generate_excerpt()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_generate_excerpt">generate_excerpt()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Generates excerpt on the basis of the post.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_generate_excerpt_with_footnotes">generate_excerpt_with_footnotes()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_generate_excerpt_with_footnotes">generate_excerpt_with_footnotes()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Generates excerpt with footnotes on the basis of the post.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_reference_container">reference_container()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_reference_container">reference_container()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Generates the reference container.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_register_hooks">register_hooks()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_register_hooks">register_hooks()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Register WordPress Hooks to replace Footnotes in the content of a public page.</dd>
|
||||
<dd>Register WordPress hooks to replace Footnotes in the content of a public page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_search">search()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_search">search()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Replaces all footnotes in the given content and appends them to the static property.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_unify_delimiters">unify_delimiters()</a>
|
||||
<a href="classes/Footnotes-Task.html#method_unify_delimiters">unify_delimiters()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
|
@ -382,7 +382,7 @@
|
|||
<section class="phpdocumentor-properties">
|
||||
<h3 class="phpdocumentor-elements__header" id="properties">
|
||||
Properties
|
||||
<a href="classes/MCI-Footnotes-Task.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="
|
||||
|
@ -393,12 +393,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_arr_footnotes">
|
||||
$a_arr_footnotes
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_arr_footnotes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_arr_footnotes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">103</span>
|
||||
</aside>
|
||||
|
@ -440,12 +440,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_allow_love_me">
|
||||
$a_bool_allow_love_me
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_allow_love_me" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_allow_love_me" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">111</span>
|
||||
</aside>
|
||||
|
@ -487,12 +487,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_hard_links_enabled">
|
||||
$a_bool_hard_links_enabled
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_hard_links_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_hard_links_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">182</span>
|
||||
</aside>
|
||||
|
@ -607,12 +607,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_mirror_tooltip_text">
|
||||
$a_bool_mirror_tooltip_text
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_mirror_tooltip_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_mirror_tooltip_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">343</span>
|
||||
</aside>
|
||||
|
@ -654,12 +654,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_syntax_error_flag">
|
||||
$a_bool_syntax_error_flag
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_bool_syntax_error_flag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_bool_syntax_error_flag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">398</span>
|
||||
</aside>
|
||||
|
@ -704,12 +704,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_int_post_id">
|
||||
$a_int_post_id
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_post_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_post_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">138</span>
|
||||
</aside>
|
||||
|
@ -786,12 +786,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_int_reference_container_id">
|
||||
$a_int_reference_container_id
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_reference_container_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_reference_container_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">156</span>
|
||||
</aside>
|
||||
|
@ -859,12 +859,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_int_scroll_offset">
|
||||
$a_int_scroll_offset
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_scroll_offset" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_scroll_offset" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">235</span>
|
||||
</aside>
|
||||
|
@ -937,12 +937,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_int_tooltip_shortcode_length">
|
||||
$a_int_tooltip_shortcode_length
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_int_tooltip_shortcode_length" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_int_tooltip_shortcode_length" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">335</span>
|
||||
</aside>
|
||||
|
@ -984,12 +984,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_end_tag">
|
||||
$a_str_end_tag
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_end_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_end_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">361</span>
|
||||
</aside>
|
||||
|
@ -1042,12 +1042,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_end_tag_regex">
|
||||
$a_str_end_tag_regex
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_end_tag_regex" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_end_tag_regex" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">379</span>
|
||||
</aside>
|
||||
|
@ -1100,12 +1100,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_footnote_link_slug">
|
||||
$a_str_footnote_link_slug
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_footnote_link_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_footnote_link_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">198</span>
|
||||
</aside>
|
||||
|
@ -1147,12 +1147,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_link_close_tag">
|
||||
$a_str_link_close_tag
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_close_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_close_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">303</span>
|
||||
</aside>
|
||||
|
@ -1194,12 +1194,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_link_open_tag">
|
||||
$a_str_link_open_tag
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_open_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_open_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">295</span>
|
||||
</aside>
|
||||
|
@ -1241,12 +1241,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_link_span">
|
||||
$a_str_link_span
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_span" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_span" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">287</span>
|
||||
</aside>
|
||||
|
@ -1288,12 +1288,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_post_container_id_compound">
|
||||
$a_str_post_container_id_compound
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_post_container_id_compound" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_post_container_id_compound" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">214</span>
|
||||
</aside>
|
||||
|
@ -1335,12 +1335,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_prefix">
|
||||
$a_str_prefix
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_prefix" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_prefix" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">119</span>
|
||||
</aside>
|
||||
|
@ -1382,12 +1382,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_referrer_link_slug">
|
||||
$a_str_referrer_link_slug
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_referrer_link_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_referrer_link_slug" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">190</span>
|
||||
</aside>
|
||||
|
@ -1429,12 +1429,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_start_tag">
|
||||
$a_str_start_tag
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_start_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_start_tag" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">352</span>
|
||||
</aside>
|
||||
|
@ -1487,12 +1487,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_start_tag_regex">
|
||||
$a_str_start_tag_regex
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_start_tag_regex" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_start_tag_regex" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">370</span>
|
||||
</aside>
|
||||
|
@ -1545,12 +1545,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_tooltip_shortcode">
|
||||
$a_str_tooltip_shortcode
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_tooltip_shortcode" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_tooltip_shortcode" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">327</span>
|
||||
</aside>
|
||||
|
@ -1592,12 +1592,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_link_ids_separator">
|
||||
$a_str_link_ids_separator
|
||||
<a href="classes/MCI-Footnotes-Task.html#property_a_str_link_ids_separator" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#property_a_str_link_ids_separator" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">206</span>
|
||||
</aside>
|
||||
|
@ -1635,7 +1635,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Task.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -1645,10 +1645,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_exec">
|
||||
exec()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_exec" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_exec" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1381</span>
|
||||
</aside>
|
||||
|
@ -1724,10 +1724,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_in_content">
|
||||
footnotes_in_content()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1098</span>
|
||||
</aside>
|
||||
|
@ -1814,10 +1814,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_in_excerpt">
|
||||
footnotes_in_excerpt()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_excerpt" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_excerpt" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1153</span>
|
||||
</aside>
|
||||
|
@ -1927,10 +1927,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_in_title">
|
||||
footnotes_in_title()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1079</span>
|
||||
</aside>
|
||||
|
@ -1989,10 +1989,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_in_widget_text">
|
||||
footnotes_in_widget_text()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_widget_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_widget_text" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1365</span>
|
||||
</aside>
|
||||
|
@ -2051,10 +2051,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_in_widget_title">
|
||||
footnotes_in_widget_title()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_in_widget_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_in_widget_title" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1353</span>
|
||||
</aside>
|
||||
|
@ -2113,10 +2113,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_output_footer">
|
||||
footnotes_output_footer()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_output_footer" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_output_footer" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1021</span>
|
||||
</aside>
|
||||
|
@ -2172,10 +2172,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_footnotes_output_head">
|
||||
footnotes_output_head()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_footnotes_output_head" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_footnotes_output_head" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">583</span>
|
||||
</aside>
|
||||
|
@ -2311,10 +2311,10 @@ Default 'manual' is fallback and is backward compatible with the initial setup.<
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_generate_excerpt">
|
||||
generate_excerpt()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_generate_excerpt" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_generate_excerpt" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1189</span>
|
||||
</aside>
|
||||
|
@ -2446,10 +2446,10 @@ Applies full WordPress excerpt processing.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_generate_excerpt_with_footnotes">
|
||||
generate_excerpt_with_footnotes()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_generate_excerpt_with_footnotes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_generate_excerpt_with_footnotes" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1253</span>
|
||||
</aside>
|
||||
|
@ -2628,12 +2628,12 @@ Does not apply full WordPress excerpt processing.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_reference_container">
|
||||
reference_container()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_reference_container" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_reference_container" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">2253</span>
|
||||
<span class="phpdocumentor-element-found-in__line">2263</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Generates the reference container.</p>
|
||||
|
@ -2737,15 +2737,15 @@ Does not apply full WordPress excerpt processing.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_hooks">
|
||||
register_hooks()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">418</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Register WordPress Hooks to replace Footnotes in the content of a public page.</p>
|
||||
<p class="phpdocumentor-summary">Register WordPress hooks to replace Footnotes in the content of a public page.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
|
@ -2906,10 +2906,10 @@ Does not apply full WordPress excerpt processing.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_search">
|
||||
search()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_search" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_search" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1540</span>
|
||||
</aside>
|
||||
|
@ -3070,10 +3070,10 @@ Does not apply full WordPress excerpt processing.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_unify_delimiters">
|
||||
unify_delimiters()
|
||||
<a href="classes/MCI-Footnotes-Task.html#method_unify_delimiters" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#method_unify_delimiters" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/task.php"><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/task.php"><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">1459</span>
|
||||
</aside>
|
||||
|
@ -3194,7 +3194,7 @@ does not escape the greater-than sign.</p>
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Task.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Task.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Template
|
||||
Footnotes_Template
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">19</span>
|
||||
</aside>
|
||||
|
@ -122,77 +122,77 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#constant_C_STR_DASHBOARD">C_STR_DASHBOARD</a>
|
||||
<a href="classes/Footnotes-Template.html#constant_C_STR_DASHBOARD">C_STR_DASHBOARD</a>
|
||||
<span>
|
||||
= 'dashboard' </span>
|
||||
</dt>
|
||||
<dd>Directory name for dashboard templates.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#constant_C_STR_PUBLIC">C_STR_PUBLIC</a>
|
||||
<a href="classes/Footnotes-Template.html#constant_C_STR_PUBLIC">C_STR_PUBLIC</a>
|
||||
<span>
|
||||
= 'public' </span>
|
||||
</dt>
|
||||
<dd>Directory name for public templates.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_plugin_directory">$plugin_directory</a>
|
||||
<a href="classes/Footnotes-Template.html#property_plugin_directory">$plugin_directory</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Plugin Directory</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -private">
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_a_str_original_content">$a_str_original_content</a>
|
||||
<a href="classes/Footnotes-Template.html#property_a_str_original_content">$a_str_original_content</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Contains the content of the template after initialize.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -private">
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_a_str_replaced_content">$a_str_replaced_content</a>
|
||||
<a href="classes/Footnotes-Template.html#property_a_str_replaced_content">$a_str_replaced_content</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Contains the content of the template after initialize with replaced place holders.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method___construct">__construct()</a>
|
||||
<a href="classes/Footnotes-Template.html#method___construct">__construct()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Class Constructor. Reads and loads the template file without replace any placeholder.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_get_content">get_content()</a>
|
||||
<a href="classes/Footnotes-Template.html#method_get_content">get_content()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the content of the template file with replaced placeholders.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_get_template">get_template()</a>
|
||||
<a href="classes/Footnotes-Template.html#method_get_template">get_template()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Get the template.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_process_template">process_template()</a>
|
||||
<a href="classes/Footnotes-Template.html#method_process_template">process_template()</a>
|
||||
<span>
|
||||
: void </span>
|
||||
</dt>
|
||||
<dd>Process template file.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_reload">reload()</a>
|
||||
<a href="classes/Footnotes-Template.html#method_reload">reload()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Reloads the original content of the template file.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_replace">replace()</a>
|
||||
<a href="classes/Footnotes-Template.html#method_replace">replace()</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
|
@ -206,16 +206,16 @@
|
|||
<section class="phpdocumentor-constants">
|
||||
<h3 class="phpdocumentor-elements__header" id="constants">
|
||||
Constants
|
||||
<a href="classes/MCI-Footnotes-Template.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_DASHBOARD">
|
||||
C_STR_DASHBOARD
|
||||
<a href="classes/MCI-Footnotes-Template.html#constant_C_STR_DASHBOARD" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#constant_C_STR_DASHBOARD" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">27</span>
|
||||
</aside>
|
||||
|
@ -253,11 +253,11 @@
|
|||
<article class="phpdocumentor-element -constant -public ">
|
||||
<h4 class="phpdocumentor-element__name" id="constant_C_STR_PUBLIC">
|
||||
C_STR_PUBLIC
|
||||
<a href="classes/MCI-Footnotes-Template.html#constant_C_STR_PUBLIC" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#constant_C_STR_PUBLIC" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">35</span>
|
||||
</aside>
|
||||
|
@ -298,7 +298,7 @@
|
|||
<section class="phpdocumentor-properties">
|
||||
<h3 class="phpdocumentor-elements__header" id="properties">
|
||||
Properties
|
||||
<a href="classes/MCI-Footnotes-Template.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="
|
||||
|
@ -309,12 +309,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_plugin_directory">
|
||||
$plugin_directory
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_plugin_directory" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#property_plugin_directory" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">60</span>
|
||||
</aside>
|
||||
|
@ -356,12 +356,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_original_content">
|
||||
$a_str_original_content
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_a_str_original_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#property_a_str_original_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">43</span>
|
||||
</aside>
|
||||
|
@ -403,12 +403,12 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_replaced_content">
|
||||
$a_str_replaced_content
|
||||
<a href="classes/MCI-Footnotes-Template.html#property_a_str_replaced_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#property_a_str_replaced_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">51</span>
|
||||
</aside>
|
||||
|
@ -446,7 +446,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Template.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -456,10 +456,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method___construct">
|
||||
__construct()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">77</span>
|
||||
</aside>
|
||||
|
@ -563,10 +563,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_content">
|
||||
get_content()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_get_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method_get_content" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">143</span>
|
||||
</aside>
|
||||
|
@ -613,10 +613,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_template">
|
||||
get_template()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_get_template" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method_get_template" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">190</span>
|
||||
</aside>
|
||||
|
@ -723,10 +723,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_process_template">
|
||||
process_template()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_process_template" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method_process_template" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">161</span>
|
||||
</aside>
|
||||
|
@ -834,10 +834,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_reload">
|
||||
reload()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_reload" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method_reload" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">133</span>
|
||||
</aside>
|
||||
|
@ -883,10 +883,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_replace">
|
||||
replace()
|
||||
<a href="classes/MCI-Footnotes-Template.html#method_replace" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#method_replace" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/template.php"><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/template.php"><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">111</span>
|
||||
</aside>
|
||||
|
@ -953,7 +953,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Template.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Template.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_WYSIWYG
|
||||
Footnotes_WYSIWYG
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">15</span>
|
||||
</aside>
|
||||
|
@ -121,35 +121,35 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_ajax_callback">ajax_callback()</a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_ajax_callback">ajax_callback()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>AJAX Callback function when the Footnotes Button is clicked. Either in the Plain text or Visual editor.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_include_scripts">include_scripts()</a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_include_scripts">include_scripts()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Includes the Plugins WYSIWYG editor script.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_new_plain_text_editor_button">new_plain_text_editor_button()</a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_new_plain_text_editor_button">new_plain_text_editor_button()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Add a new button to the plain text editor.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_new_visual_editor_button">new_visual_editor_button()</a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_new_visual_editor_button">new_visual_editor_button()</a>
|
||||
<span>
|
||||
: array<string|int, mixed> </span>
|
||||
</dt>
|
||||
<dd>Append a new Button to the WYSIWYG editor of Posts and Pages.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_register_hooks">register_hooks()</a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_register_hooks">register_hooks()</a>
|
||||
<span>
|
||||
: void </span>
|
||||
</dt>
|
||||
|
@ -166,7 +166,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -176,10 +176,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_ajax_callback">
|
||||
ajax_callback()
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_ajax_callback" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_ajax_callback" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">87</span>
|
||||
</aside>
|
||||
|
@ -226,10 +226,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_include_scripts">
|
||||
include_scripts()
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_include_scripts" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_include_scripts" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">76</span>
|
||||
</aside>
|
||||
|
@ -287,10 +287,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_new_plain_text_editor_button">
|
||||
new_plain_text_editor_button()
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_new_plain_text_editor_button" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_new_plain_text_editor_button" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">62</span>
|
||||
</aside>
|
||||
|
@ -336,10 +336,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_new_visual_editor_button">
|
||||
new_visual_editor_button()
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_new_visual_editor_button" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_new_visual_editor_button" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">52</span>
|
||||
</aside>
|
||||
|
@ -397,10 +397,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_hooks">
|
||||
register_hooks()
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#method_register_hooks" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/wysiwyg.php"><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/wysiwyg.php"><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">30</span>
|
||||
</aside>
|
||||
|
@ -482,7 +482,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-WYSIWYG.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-WYSIWYG.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Widget_Base
|
||||
Footnotes_Widget_Base
|
||||
|
||||
<span class="phpdocumentor-element__extends">
|
||||
extends <abbr title="\WP_Widget">WP_Widget</abbr>
|
||||
|
@ -86,7 +86,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">21</span>
|
||||
</aside>
|
||||
|
@ -136,35 +136,35 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method___construct">__construct()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method___construct">__construct()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Class Constructor. Registers the child Widget to WordPress.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_description">get_description()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_description">get_description()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the Description of the child widget.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_id">get_id()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_id">get_id()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns an unique ID as string used for the Widget Base ID.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_name">get_name()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_name">get_name()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the Public name of child Widget to be displayed in the Configuration page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_widget_width">get_widget_width()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_widget_width">get_widget_width()</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
|
@ -181,7 +181,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -191,10 +191,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method___construct">
|
||||
__construct()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">69</span>
|
||||
</aside>
|
||||
|
@ -248,7 +248,7 @@
|
|||
<span class="phpdocumentor-tag__name">link</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<a class="phpdocumentor-tag-link" href="https://plugins.trac.wordpress.org/browser/footnotes/trunk/class/widgets/base.php?rev=1445720"> <p>“The called constructor method for WP_Widget in MCI_Footnotes_Widget_ReferenceContainer is deprecated since version 4.3.0! Use __construct() instead.”</p>
|
||||
<a class="phpdocumentor-tag-link" href="https://plugins.trac.wordpress.org/browser/footnotes/trunk/class/widgets/base.php?rev=1445720"> <p>“The called constructor method for WP_Widget in Footnotes_Widget_ReferenceContainer is deprecated since version 4.3.0! Use __construct() instead.”</p>
|
||||
</a>
|
||||
|
||||
</dd>
|
||||
|
@ -269,10 +269,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_description">
|
||||
get_description()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">45</span>
|
||||
</aside>
|
||||
|
@ -318,10 +318,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_id">
|
||||
get_id()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">29</span>
|
||||
</aside>
|
||||
|
@ -367,10 +367,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_name">
|
||||
get_name()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_name" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_name" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">37</span>
|
||||
</aside>
|
||||
|
@ -416,10 +416,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_widget_width">
|
||||
get_widget_width()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_widget_width" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_widget_width" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">53</span>
|
||||
</aside>
|
||||
|
@ -473,7 +473,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,10 +75,10 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes_Widget_Reference_Container
|
||||
Footnotes_Widget_Reference_Container
|
||||
|
||||
<span class="phpdocumentor-element__extends">
|
||||
extends <a href="classes/MCI-Footnotes-Widget-Base.html"><abbr title="\MCI_Footnotes_Widget_Base">MCI_Footnotes_Widget_Base</abbr></a>
|
||||
extends <a href="classes/Footnotes-Widget-Base.html"><abbr title="\Footnotes_Widget_Base">Footnotes_Widget_Base</abbr></a>
|
||||
</span>
|
||||
|
||||
|
||||
|
@ -86,7 +86,7 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">15</span>
|
||||
</aside>
|
||||
|
@ -124,49 +124,49 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method___construct">__construct()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method___construct">__construct()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Class Constructor. Registers the child Widget to WordPress.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_form">form()</a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_form">form()</a>
|
||||
<span>
|
||||
: void </span>
|
||||
</dt>
|
||||
<dd>Outputs the Settings of the Widget.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_widget">widget()</a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_widget">widget()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Outputs the Content of the Widget.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_description">get_description()</a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_description">get_description()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the Description of the child widget.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_id">get_id()</a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_id">get_id()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns an unique ID as string used for the Widget Base ID.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_name">get_name()</a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_name">get_name()</a>
|
||||
<span>
|
||||
: string </span>
|
||||
</dt>
|
||||
<dd>Returns the Public name of the Widget to be displayed in the Configuration page.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -protected">
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_widget_width">get_widget_width()</a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_widget_width">get_widget_width()</a>
|
||||
<span>
|
||||
: int </span>
|
||||
</dt>
|
||||
|
@ -183,7 +183,7 @@
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -193,10 +193,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method___construct">
|
||||
__construct()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">69</span>
|
||||
</aside>
|
||||
|
@ -250,7 +250,7 @@
|
|||
<span class="phpdocumentor-tag__name">link</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<a class="phpdocumentor-tag-link" href="https://plugins.trac.wordpress.org/browser/footnotes/trunk/class/widgets/base.php?rev=1445720"> <p>“The called constructor method for WP_Widget in MCI_Footnotes_Widget_ReferenceContainer is deprecated since version 4.3.0! Use __construct() instead.”</p>
|
||||
<a class="phpdocumentor-tag-link" href="https://plugins.trac.wordpress.org/browser/footnotes/trunk/class/widgets/base.php?rev=1445720"> <p>“The called constructor method for WP_Widget in Footnotes_Widget_ReferenceContainer is deprecated since version 4.3.0! Use __construct() instead.”</p>
|
||||
</a>
|
||||
|
||||
</dd>
|
||||
|
@ -271,10 +271,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_form">
|
||||
form()
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_form" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_form" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">58</span>
|
||||
</aside>
|
||||
|
@ -333,10 +333,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_widget">
|
||||
widget()
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_widget" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_widget" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">69</span>
|
||||
</aside>
|
||||
|
@ -403,10 +403,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_description">
|
||||
get_description()
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_description" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">45</span>
|
||||
</aside>
|
||||
|
@ -453,10 +453,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_id">
|
||||
get_id()
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_id" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">23</span>
|
||||
</aside>
|
||||
|
@ -502,10 +502,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_name">
|
||||
get_name()
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#method_get_name" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#method_get_name" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/reference-container.php"><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/reference-container.php"><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">33</span>
|
||||
</aside>
|
||||
|
@ -551,10 +551,10 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_get_widget_width">
|
||||
get_widget_width()
|
||||
<a href="classes/MCI-Footnotes-Widget-Base.html#method_get_widget_width" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Base.html#method_get_widget_width" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/widgets/base.php"><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/widgets/base.php"><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">53</span>
|
||||
</aside>
|
||||
|
@ -608,7 +608,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes-Widget-Reference-Container.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes-Widget-Reference-Container.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<article class="phpdocumentor-element -class">
|
||||
<h2 class="phpdocumentor-content__title">
|
||||
MCI_Footnotes
|
||||
Footnotes
|
||||
|
||||
|
||||
|
||||
|
@ -83,14 +83,15 @@
|
|||
</h2>
|
||||
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">29</span>
|
||||
<span class="phpdocumentor-element-found-in__line">16</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Entry point of the Plugin. Loads the Dashboard and executes the Task.</p>
|
||||
<p class="phpdocumentor-summary">Provides an entry point to the Plugin.</p>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
<section class="phpdocumentor-description"><p>Loads the dashboard and executes the task.</p>
|
||||
</section>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
|
@ -121,70 +122,70 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_alternative_tooltips_enabled">$a_bool_alternative_tooltips_enabled</a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_alternative_tooltips_enabled">$a_bool_alternative_tooltips_enabled</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Allows to determine whether alternative tooltips are enabled.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_amp_enabled">$a_bool_amp_enabled</a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_amp_enabled">$a_bool_amp_enabled</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Allows to determine whether AMP compatibility mode is enabled.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_tooltips_enabled">$a_bool_tooltips_enabled</a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_tooltips_enabled">$a_bool_tooltips_enabled</a>
|
||||
<span>
|
||||
: bool </span>
|
||||
</dt>
|
||||
<dd>Allows to determine whether tooltips are enabled.</dd>
|
||||
<dd>Flag for using tooltips.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes.html#property_a_obj_task">$a_obj_task</a>
|
||||
<a href="classes/Footnotes.html#property_a_obj_task">$a_obj_task</a>
|
||||
<span>
|
||||
: null|<a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a> </span>
|
||||
: <abbr title="\Task">Task</abbr> </span>
|
||||
</dt>
|
||||
<dd>Reference to the Plugin Task object.</dd>
|
||||
<dd>The Plugin task.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -property -public">
|
||||
<a href="classes/MCI-Footnotes.html#property_a_str_script_mode">$a_str_script_mode</a>
|
||||
<a href="classes/Footnotes.html#property_a_str_script_mode">$a_str_script_mode</a>
|
||||
<span>
|
||||
: <abbr title="\str">str</abbr> </span>
|
||||
</dt>
|
||||
<dd>Allows to determine the script mode among jQuery or plain JS.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_widgets">initialize_widgets()</a>
|
||||
<a href="classes/Footnotes.html#method_initialize_widgets">initialize_widgets()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Initializes all Widgets of the Plugin.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes.html#method_register_public">register_public()</a>
|
||||
<a href="classes/Footnotes.html#method_register_public">register_public()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Registers and enqueues scripts and stylesheets to the public pages.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -public">
|
||||
<a href="classes/MCI-Footnotes.html#method_run">run()</a>
|
||||
<a href="classes/Footnotes.html#method_run">run()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Executes the Plugin.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_dashboard">initialize_dashboard()</a>
|
||||
<a href="classes/Footnotes.html#method_initialize_dashboard">initialize_dashboard()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Initializes the Dashboard of the Plugin and loads them.</dd>
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -method -private">
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_task">initialize_task()</a>
|
||||
<a href="classes/Footnotes.html#method_initialize_task">initialize_task()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
|
@ -200,7 +201,7 @@
|
|||
<section class="phpdocumentor-properties">
|
||||
<h3 class="phpdocumentor-elements__header" id="properties">
|
||||
Properties
|
||||
<a href="classes/MCI-Footnotes.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="
|
||||
|
@ -211,14 +212,14 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_alternative_tooltips_enabled">
|
||||
$a_bool_alternative_tooltips_enabled
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_alternative_tooltips_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_alternative_tooltips_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">74</span>
|
||||
<span class="phpdocumentor-element-found-in__line">49</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Allows to determine whether alternative tooltips are enabled.</p>
|
||||
|
@ -295,14 +296,14 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_amp_enabled">
|
||||
$a_bool_amp_enabled
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_amp_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_amp_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">96</span>
|
||||
<span class="phpdocumentor-element-found-in__line">71</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Allows to determine whether AMP compatibility mode is enabled.</p>
|
||||
|
@ -404,17 +405,17 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_bool_tooltips_enabled">
|
||||
$a_bool_tooltips_enabled
|
||||
<a href="classes/MCI-Footnotes.html#property_a_bool_tooltips_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#property_a_bool_tooltips_enabled" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">58</span>
|
||||
<span class="phpdocumentor-element-found-in__line">33</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Allows to determine whether tooltips are enabled.</p>
|
||||
<p class="phpdocumentor-summary">Flag for using tooltips.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
|
@ -422,11 +423,7 @@
|
|||
<span class="phpdocumentor-signature__name">$a_bool_tooltips_enabled</span>
|
||||
= <span class="phpdocumentor-signature__default-value">alse</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"><p>The actual value of these properties is configurable.</p>
|
||||
<ul>
|
||||
<li>Bugfix: Templates: optimize template load and processing based on settings, thanks to @misfist code contribution.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
|
@ -442,38 +439,6 @@
|
|||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">contributor</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>Patrizia Lutz @misfist</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">link</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<a class="phpdocumentor-tag-link" href="https://wordpress.org/support/topic/template-override-filter/#post-13864301"> https://wordpress.org/support/topic/template-override-filter/#post-13864301 </a>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">link</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<a class="phpdocumentor-tag-link" href="https://github.com/misfist/footnotes/releases/tag/2.4.0d3"> <p>repository</p>
|
||||
</a>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">link</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<a class="phpdocumentor-tag-link" href="https://github.com/misfist/footnotes/compare/2.4.0%E2%80%A62.4.0d3"> <p>diff</p>
|
||||
</a>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
@ -487,21 +452,21 @@
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_obj_task">
|
||||
$a_obj_task
|
||||
<a href="classes/MCI-Footnotes.html#property_a_obj_task" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#property_a_obj_task" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">37</span>
|
||||
<span class="phpdocumentor-element-found-in__line">24</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Reference to the Plugin Task object.</p>
|
||||
<p class="phpdocumentor-summary">The Plugin task.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility">public</span>
|
||||
<span class="phpdocumentor-signature__type">null|<a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a></span>
|
||||
<span class="phpdocumentor-signature__type"><abbr title="\Task">Task</abbr></span>
|
||||
<span class="phpdocumentor-signature__name">$a_obj_task</span>
|
||||
= <span class="phpdocumentor-signature__default-value">
|
||||
ull</span></code>
|
||||
|
@ -535,14 +500,14 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="property_a_str_script_mode">
|
||||
$a_str_script_mode
|
||||
<a href="classes/MCI-Footnotes.html#property_a_str_script_mode" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#property_a_str_script_mode" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<span class="phpdocumentor-element__modifiers">
|
||||
</span>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">114</span>
|
||||
<span class="phpdocumentor-element-found-in__line">89</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Allows to determine the script mode among jQuery or plain JS.</p>
|
||||
|
@ -613,7 +578,7 @@ ull</span></code>
|
|||
<section class="phpdocumentor-methods">
|
||||
<h3 class="phpdocumentor-elements__header" id="methods">
|
||||
Methods
|
||||
<a href="classes/MCI-Footnotes.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article
|
||||
class="phpdocumentor-element
|
||||
|
@ -623,12 +588,12 @@ ull</span></code>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_initialize_widgets">
|
||||
initialize_widgets()
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_widgets" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#method_initialize_widgets" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">180</span>
|
||||
<span class="phpdocumentor-element-found-in__line">155</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Initializes all Widgets of the Plugin.</p>
|
||||
|
@ -759,12 +724,12 @@ and use the bare register_widget() here.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_register_public">
|
||||
register_public()
|
||||
<a href="classes/MCI-Footnotes.html#method_register_public" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#method_register_public" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">214</span>
|
||||
<span class="phpdocumentor-element-found-in__line">189</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Registers and enqueues scripts and stylesheets to the public pages.</p>
|
||||
|
@ -858,12 +823,12 @@ and use the bare register_widget() here.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_run">
|
||||
run()
|
||||
<a href="classes/MCI-Footnotes.html#method_run" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#method_run" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">131</span>
|
||||
<span class="phpdocumentor-element-found-in__line">106</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Executes the Plugin.</p>
|
||||
|
@ -951,12 +916,12 @@ and use the bare register_widget() here.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_initialize_dashboard">
|
||||
initialize_dashboard()
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_dashboard" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#method_initialize_dashboard" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">189</span>
|
||||
<span class="phpdocumentor-element-found-in__line">164</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Initializes the Dashboard of the Plugin and loads them.</p>
|
||||
|
@ -1000,12 +965,12 @@ and use the bare register_widget() here.</p>
|
|||
>
|
||||
<h4 class="phpdocumentor-element__name" id="method_initialize_task">
|
||||
initialize_task()
|
||||
<a href="classes/MCI-Footnotes.html#method_initialize_task" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
<a href="classes/Footnotes.html#method_initialize_task" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="class/init.php"><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></abbr>
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/class/init.php"><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">198</span>
|
||||
<span class="phpdocumentor-element-found-in__line">173</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Initializes the Plugin Task and registers the Task hooks.</p>
|
||||
|
@ -1057,7 +1022,7 @@ and use the bare register_widget() here.</p>
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="classes/MCI-Footnotes.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="classes/Footnotes.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Config.html"><abbr title="\MCI_Footnotes_Config">MCI_Footnotes_Config</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Config.html"><abbr title="\Footnotes_Config">Footnotes_Config</abbr></a></dt>
|
||||
<dd>Contains all Plugin Constants. Contains no Method or Property.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-config.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-config.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Convert.html"><abbr title="\MCI_Footnotes_Convert">MCI_Footnotes_Convert</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Convert.html"><abbr title="\Footnotes_Convert">Footnotes_Convert</abbr></a></dt>
|
||||
<dd>Converts data types and Footnotes specific values.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-convert.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-convert.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Init.html"><abbr title="\MCI_Footnotes_Layout_Init">MCI_Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Init.html"><abbr title="\Footnotes_Layout_Init">Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dd>Handles the Settings interface of the Plugin.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-dashboard-init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-dashboard-init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Engine.html"><abbr title="\MCI_Footnotes_Layout_Engine">MCI_Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Engine.html"><abbr title="\Footnotes_Layout_Engine">Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dd>Layout Engine for the administration dashboard.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-dashboard-layout.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-dashboard-layout.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Settings.html"><abbr title="\MCI_Footnotes_Layout_Settings">MCI_Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Settings.html"><abbr title="\Footnotes_Layout_Settings">Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dd>Displays and handles all Settings of the Plugin.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-dashboard-subpage-main.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-dashboard-subpage-main.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -71,6 +71,7 @@
|
|||
<div class="phpdocumentor-column -eight phpdocumentor-content">
|
||||
<ul class="phpdocumentor-breadcrumbs">
|
||||
<li class="phpdocumentor-breadcrumb"><a href="packages/footnotes.html">footnotes</a></li>
|
||||
<li class="phpdocumentor-breadcrumb"><a href="packages/footnotes-WPDashboard.html">WPDashboard</a></li>
|
||||
</ul>
|
||||
|
||||
<article class="phpdocumentor-element -file">
|
||||
|
@ -85,8 +86,8 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Hooks.html"><abbr title="\MCI_Footnotes_Hooks">MCI_Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress Hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Hooks.html"><abbr title="\Footnotes_Hooks">Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress hooks and executes them on demand.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
@ -110,7 +111,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-hooks.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-hooks.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,8 +85,8 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes.html"><abbr title="\MCI_Footnotes">MCI_Footnotes</abbr></a></dt>
|
||||
<dd>Entry point of the Plugin. Loads the Dashboard and executes the Task.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes.html"><abbr title="\Footnotes">Footnotes</abbr></a></dt>
|
||||
<dd>Provides an entry point to the Plugin.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-init.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Language.html"><abbr title="\MCI_Footnotes_Language">MCI_Footnotes_Language</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Language.html"><abbr title="\Footnotes_Language">Footnotes_Language</abbr></a></dt>
|
||||
<dd>Loads text domain of current or default language for localization.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-language.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-language.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Settings.html"><abbr title="\MCI_Footnotes_Settings">MCI_Footnotes_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Settings.html"><abbr title="\Footnotes_Settings">Footnotes_Settings</abbr></a></dt>
|
||||
<dd>Loads the settings values, sets to default values if undefined.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-settings.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-settings.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Task.html"><abbr title="\Footnotes_Task">Footnotes_Task</abbr></a></dt>
|
||||
<dd>Searches and replaces the footnotes and generates the reference container.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-task.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-task.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Template.html"><abbr title="\MCI_Footnotes_Template">MCI_Footnotes_Template</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Template.html"><abbr title="\Footnotes_Template">Footnotes_Template</abbr></a></dt>
|
||||
<dd>Handles each Template file for the Plugin Frontend (e.g. Settings Dashboard, Public pages, ...).</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-template.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-template.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Base.html"><abbr title="\MCI_Footnotes_Widget_Base">MCI_Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Base.html"><abbr title="\Footnotes_Widget_Base">Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dd>Base Class for all Plugin Widgets. Registers each Widget to WordPress.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-widgets-base.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-widgets-base.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Reference-Container.html"><abbr title="\MCI_Footnotes_Widget_Reference_Container">MCI_Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Reference-Container.html"><abbr title="\Footnotes_Widget_Reference_Container">Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dd>Registers a Widget to put the Reference Container to the widget area.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-widgets-reference-container.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-widgets-reference-container.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-WYSIWYG.html"><abbr title="\MCI_Footnotes_WYSIWYG">MCI_Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-WYSIWYG.html"><abbr title="\Footnotes_WYSIWYG">Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dd>Handles the WSYIWYG-Buttons.</dd>
|
||||
|
||||
</dl>
|
||||
|
@ -110,7 +110,7 @@
|
|||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/class-wysiwyg.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
<a href="files/src-class-wysiwyg.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
110
docs/files/src-footnotes.html
Normal file
|
@ -0,0 +1,110 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Documentation</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<base href="../">
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/template.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/js/all.min.js" integrity="sha256-0vuk8LXoyrmCjp1f0O300qo1M75ZQyhH9X3J6d+scmk=" crossorigin="anonymous"></script>
|
||||
<script src="js/search.js"></script>
|
||||
<script defer src="js/searchIndex.js"></script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<header class="phpdocumentor-header phpdocumentor-section">
|
||||
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
|
||||
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
|
||||
<label class="phpdocumentor-header__menu-icon" for="menu-button">
|
||||
<i class="fas fa-bars"></i>
|
||||
</label>
|
||||
<section data-search-form class="phpdocumentor-search">
|
||||
<label>
|
||||
<span class="visually-hidden">Search for</span>
|
||||
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
|
||||
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
|
||||
</svg>
|
||||
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
|
||||
</label>
|
||||
</section>
|
||||
|
||||
<nav class="phpdocumentor-topnav">
|
||||
<ul class="phpdocumentor-topnav__menu">
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="phpdocumentor">
|
||||
<div class="phpdocumentor-section">
|
||||
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
|
||||
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
|
||||
Menu
|
||||
</label>
|
||||
<aside class="phpdocumentor-column -four phpdocumentor-sidebar">
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-namespace"><a href="namespaces/default.html"><abbr title="\">Global</abbr></a></h3>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
|
||||
</section>
|
||||
</aside>
|
||||
|
||||
<div class="phpdocumentor-column -eight phpdocumentor-content">
|
||||
<ul class="phpdocumentor-breadcrumbs">
|
||||
<li class="phpdocumentor-breadcrumb"><a href="packages/footnotes.html">footnotes</a></li>
|
||||
</ul>
|
||||
|
||||
<article class="phpdocumentor-element -file">
|
||||
<h2 class="phpdocumentor-content__title">footnotes.php</h2>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
<header class="phpdocumentor-search-results__header">
|
||||
<h2 class="phpdocumentor-search-results__title">Search results</h2>
|
||||
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
|
||||
</header>
|
||||
<section class="phpdocumentor-search-results__body">
|
||||
<ul class="phpdocumentor-search-results__entries"></ul>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/src-footnotes.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
cssVars({});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
190
docs/files/src-includes.html
Normal file
|
@ -0,0 +1,190 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Documentation</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<base href="../">
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/template.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/js/all.min.js" integrity="sha256-0vuk8LXoyrmCjp1f0O300qo1M75ZQyhH9X3J6d+scmk=" crossorigin="anonymous"></script>
|
||||
<script src="js/search.js"></script>
|
||||
<script defer src="js/searchIndex.js"></script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<header class="phpdocumentor-header phpdocumentor-section">
|
||||
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
|
||||
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
|
||||
<label class="phpdocumentor-header__menu-icon" for="menu-button">
|
||||
<i class="fas fa-bars"></i>
|
||||
</label>
|
||||
<section data-search-form class="phpdocumentor-search">
|
||||
<label>
|
||||
<span class="visually-hidden">Search for</span>
|
||||
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
|
||||
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
|
||||
</svg>
|
||||
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
|
||||
</label>
|
||||
</section>
|
||||
|
||||
<nav class="phpdocumentor-topnav">
|
||||
<ul class="phpdocumentor-topnav__menu">
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="phpdocumentor">
|
||||
<div class="phpdocumentor-section">
|
||||
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
|
||||
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
|
||||
Menu
|
||||
</label>
|
||||
<aside class="phpdocumentor-column -four phpdocumentor-sidebar">
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-namespace"><a href="namespaces/default.html"><abbr title="\">Global</abbr></a></h3>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
|
||||
</section>
|
||||
</aside>
|
||||
|
||||
<div class="phpdocumentor-column -eight phpdocumentor-content">
|
||||
<ul class="phpdocumentor-breadcrumbs">
|
||||
<li class="phpdocumentor-breadcrumb"><a href="packages/footnotes.html">footnotes</a></li>
|
||||
</ul>
|
||||
|
||||
<article class="phpdocumentor-element -file">
|
||||
<h2 class="phpdocumentor-content__title">includes.php</h2>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3 id="toc">
|
||||
Table of Contents
|
||||
<a href="#toc" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -function -">
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files">mci_footnotes_require_php_files()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Requires (`require_once`) all `*.php` files inside a specific Directory.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="phpdocumentor-functions">
|
||||
<h3 class="phpdocumentor-elements__header" id="functions">
|
||||
Functions
|
||||
<a href="files/src-includes.html#functions" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -function - ">
|
||||
<h4 class="phpdocumentor-element__name" id="function_mci_footnotes_require_php_files">
|
||||
mci_footnotes_require_php_files()
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/includes.php"><a href="files/src-includes.html"><abbr title="src/includes.php">includes.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Requires (`require_once`) all `*.php` files inside a specific Directory.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility"></span>
|
||||
<span class="phpdocumentor-signature__name">mci_footnotes_require_php_files</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string </span><span class="phpdocumentor-signature__argument__name">$p_str_directory</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
|
||||
<dl class="phpdocumentor-argument-list">
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_str_directory</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">string</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Absolute Directory path to lookup for <code class="prettyprint">*.php</code> files.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
Tags
|
||||
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h5>
|
||||
<dl class="phpdocumentor-tag-list">
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">author</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>Stefan Herndler</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">1.5.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
<header class="phpdocumentor-search-results__header">
|
||||
<h2 class="phpdocumentor-search-results__title">Search results</h2>
|
||||
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
|
||||
</header>
|
||||
<section class="phpdocumentor-search-results__body">
|
||||
<ul class="phpdocumentor-search-results__entries"></ul>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="files/src-includes.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
cssVars({});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
112
docs/index.html
|
@ -81,42 +81,122 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Config.html"><abbr title="\MCI_Footnotes_Config">MCI_Footnotes_Config</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Config.html"><abbr title="\Footnotes_Config">Footnotes_Config</abbr></a></dt>
|
||||
<dd>Contains all Plugin Constants. Contains no Method or Property.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Convert.html"><abbr title="\MCI_Footnotes_Convert">MCI_Footnotes_Convert</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Convert.html"><abbr title="\Footnotes_Convert">Footnotes_Convert</abbr></a></dt>
|
||||
<dd>Converts data types and Footnotes specific values.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Init.html"><abbr title="\MCI_Footnotes_Layout_Init">MCI_Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Init.html"><abbr title="\Footnotes_Layout_Init">Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dd>Handles the Settings interface of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Engine.html"><abbr title="\MCI_Footnotes_Layout_Engine">MCI_Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Engine.html"><abbr title="\Footnotes_Layout_Engine">Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dd>Layout Engine for the administration dashboard.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Settings.html"><abbr title="\MCI_Footnotes_Layout_Settings">MCI_Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Settings.html"><abbr title="\Footnotes_Layout_Settings">Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dd>Displays and handles all Settings of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Hooks.html"><abbr title="\MCI_Footnotes_Hooks">MCI_Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress Hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes.html"><abbr title="\MCI_Footnotes">MCI_Footnotes</abbr></a></dt>
|
||||
<dd>Entry point of the Plugin. Loads the Dashboard and executes the Task.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Language.html"><abbr title="\MCI_Footnotes_Language">MCI_Footnotes_Language</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Hooks.html"><abbr title="\Footnotes_Hooks">Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes.html"><abbr title="\Footnotes">Footnotes</abbr></a></dt>
|
||||
<dd>Provides an entry point to the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Language.html"><abbr title="\Footnotes_Language">Footnotes_Language</abbr></a></dt>
|
||||
<dd>Loads text domain of current or default language for localization.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Settings.html"><abbr title="\MCI_Footnotes_Settings">MCI_Footnotes_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Settings.html"><abbr title="\Footnotes_Settings">Footnotes_Settings</abbr></a></dt>
|
||||
<dd>Loads the settings values, sets to default values if undefined.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Task.html"><abbr title="\Footnotes_Task">Footnotes_Task</abbr></a></dt>
|
||||
<dd>Searches and replaces the footnotes and generates the reference container.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Template.html"><abbr title="\MCI_Footnotes_Template">MCI_Footnotes_Template</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Template.html"><abbr title="\Footnotes_Template">Footnotes_Template</abbr></a></dt>
|
||||
<dd>Handles each Template file for the Plugin Frontend (e.g. Settings Dashboard, Public pages, ...).</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Base.html"><abbr title="\MCI_Footnotes_Widget_Base">MCI_Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Base.html"><abbr title="\Footnotes_Widget_Base">Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dd>Base Class for all Plugin Widgets. Registers each Widget to WordPress.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Reference-Container.html"><abbr title="\MCI_Footnotes_Widget_Reference_Container">MCI_Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Reference-Container.html"><abbr title="\Footnotes_Widget_Reference_Container">Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dd>Registers a Widget to put the Reference Container to the widget area.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-WYSIWYG.html"><abbr title="\MCI_Footnotes_WYSIWYG">MCI_Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-WYSIWYG.html"><abbr title="\Footnotes_WYSIWYG">Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dd>Handles the WSYIWYG-Buttons.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
<h3 id="toc">
|
||||
Table of Contents
|
||||
<a href="#toc" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -function -">
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files">mci_footnotes_require_php_files()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Requires (`require_once`) all `*.php` files inside a specific Directory.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
<section class="phpdocumentor-functions">
|
||||
<h3 class="phpdocumentor-elements__header" id="functions">
|
||||
Functions
|
||||
<a href="namespaces/default.html#functions" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -function - ">
|
||||
<h4 class="phpdocumentor-element__name" id="function_mci_footnotes_require_php_files">
|
||||
mci_footnotes_require_php_files()
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/includes.php"><a href="files/src-includes.html"><abbr title="src/includes.php">includes.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Requires (`require_once`) all `*.php` files inside a specific Directory.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility"></span>
|
||||
<span class="phpdocumentor-signature__name">mci_footnotes_require_php_files</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string </span><span class="phpdocumentor-signature__argument__name">$p_str_directory</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
|
||||
<dl class="phpdocumentor-argument-list">
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_str_directory</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">string</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Absolute Directory path to lookup for <code class="prettyprint">*.php</code> files.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
Tags
|
||||
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h5>
|
||||
<dl class="phpdocumentor-tag-list">
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">author</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>Stefan Herndler</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">1.5.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
<header class="phpdocumentor-search-results__header">
|
||||
|
|
|
@ -73,44 +73,49 @@
|
|||
<h2>Files</h2>
|
||||
<h3>B</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-widgets-base.html"><abbr title="class/widgets/base.php">base.php</abbr></a></li>
|
||||
<li><a href="files/src-class-widgets-base.html"><abbr title="src/class/widgets/base.php">base.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>C</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-config.html"><abbr title="class/config.php">config.php</abbr></a></li>
|
||||
<li><a href="files/class-convert.html"><abbr title="class/convert.php">convert.php</abbr></a></li>
|
||||
<li><a href="files/src-class-config.html"><abbr title="src/class/config.php">config.php</abbr></a></li>
|
||||
<li><a href="files/src-class-convert.html"><abbr title="src/class/convert.php">convert.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>H</h3>
|
||||
<h3>F</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-hooks.html"><abbr title="class/hooks.php">hooks.php</abbr></a></li>
|
||||
<li><a href="files/src-footnotes.html"><abbr title="src/footnotes.php">footnotes.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>H</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/src-class-hooks.html"><abbr title="src/class/hooks.php">hooks.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>I</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-dashboard-init.html"><abbr title="class/dashboard/init.php">init.php</abbr></a></li>
|
||||
<li><a href="files/class-init.html"><abbr title="class/init.php">init.php</abbr></a></li>
|
||||
<li><a href="files/src-includes.html"><abbr title="src/includes.php">includes.php</abbr></a></li>
|
||||
<li><a href="files/src-class-dashboard-init.html"><abbr title="src/class/dashboard/init.php">init.php</abbr></a></li>
|
||||
<li><a href="files/src-class-init.html"><abbr title="src/class/init.php">init.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>L</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-language.html"><abbr title="class/language.php">language.php</abbr></a></li>
|
||||
<li><a href="files/class-dashboard-layout.html"><abbr title="class/dashboard/layout.php">layout.php</abbr></a></li>
|
||||
<li><a href="files/src-class-language.html"><abbr title="src/class/language.php">language.php</abbr></a></li>
|
||||
<li><a href="files/src-class-dashboard-layout.html"><abbr title="src/class/dashboard/layout.php">layout.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>R</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-widgets-reference-container.html"><abbr title="class/widgets/reference-container.php">reference-container.php</abbr></a></li>
|
||||
<li><a href="files/src-class-widgets-reference-container.html"><abbr title="src/class/widgets/reference-container.php">reference-container.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>S</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-settings.html"><abbr title="class/settings.php">settings.php</abbr></a></li>
|
||||
<li><a href="files/class-dashboard-subpage-main.html"><abbr title="class/dashboard/subpage-main.php">subpage-main.php</abbr></a></li>
|
||||
<li><a href="files/src-class-settings.html"><abbr title="src/class/settings.php">settings.php</abbr></a></li>
|
||||
<li><a href="files/src-class-dashboard-subpage-main.html"><abbr title="src/class/dashboard/subpage-main.php">subpage-main.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>T</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-task.html"><abbr title="class/task.php">task.php</abbr></a></li>
|
||||
<li><a href="files/class-template.html"><abbr title="class/template.php">template.php</abbr></a></li>
|
||||
<li><a href="files/src-class-task.html"><abbr title="src/class/task.php">task.php</abbr></a></li>
|
||||
<li><a href="files/src-class-template.html"><abbr title="src/class/template.php">template.php</abbr></a></li>
|
||||
</ul>
|
||||
<h3>W</h3>
|
||||
<ul class="phpdocumentor-list">
|
||||
<li><a href="files/class-wysiwyg.html"><abbr title="class/wysiwyg.php">wysiwyg.php</abbr></a></li>
|
||||
<li><a href="files/src-class-wysiwyg.html"><abbr title="src/class/wysiwyg.php">wysiwyg.php</abbr></a></li>
|
||||
</ul>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
|
|
|
@ -84,42 +84,122 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Config.html"><abbr title="\MCI_Footnotes_Config">MCI_Footnotes_Config</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Config.html"><abbr title="\Footnotes_Config">Footnotes_Config</abbr></a></dt>
|
||||
<dd>Contains all Plugin Constants. Contains no Method or Property.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Convert.html"><abbr title="\MCI_Footnotes_Convert">MCI_Footnotes_Convert</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Convert.html"><abbr title="\Footnotes_Convert">Footnotes_Convert</abbr></a></dt>
|
||||
<dd>Converts data types and Footnotes specific values.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Init.html"><abbr title="\MCI_Footnotes_Layout_Init">MCI_Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Init.html"><abbr title="\Footnotes_Layout_Init">Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dd>Handles the Settings interface of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Engine.html"><abbr title="\MCI_Footnotes_Layout_Engine">MCI_Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Engine.html"><abbr title="\Footnotes_Layout_Engine">Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dd>Layout Engine for the administration dashboard.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Settings.html"><abbr title="\MCI_Footnotes_Layout_Settings">MCI_Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Settings.html"><abbr title="\Footnotes_Layout_Settings">Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dd>Displays and handles all Settings of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Hooks.html"><abbr title="\MCI_Footnotes_Hooks">MCI_Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress Hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes.html"><abbr title="\MCI_Footnotes">MCI_Footnotes</abbr></a></dt>
|
||||
<dd>Entry point of the Plugin. Loads the Dashboard and executes the Task.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Language.html"><abbr title="\MCI_Footnotes_Language">MCI_Footnotes_Language</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Hooks.html"><abbr title="\Footnotes_Hooks">Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes.html"><abbr title="\Footnotes">Footnotes</abbr></a></dt>
|
||||
<dd>Provides an entry point to the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Language.html"><abbr title="\Footnotes_Language">Footnotes_Language</abbr></a></dt>
|
||||
<dd>Loads text domain of current or default language for localization.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Settings.html"><abbr title="\MCI_Footnotes_Settings">MCI_Footnotes_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Settings.html"><abbr title="\Footnotes_Settings">Footnotes_Settings</abbr></a></dt>
|
||||
<dd>Loads the settings values, sets to default values if undefined.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Task.html"><abbr title="\Footnotes_Task">Footnotes_Task</abbr></a></dt>
|
||||
<dd>Searches and replaces the footnotes and generates the reference container.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Template.html"><abbr title="\MCI_Footnotes_Template">MCI_Footnotes_Template</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Template.html"><abbr title="\Footnotes_Template">Footnotes_Template</abbr></a></dt>
|
||||
<dd>Handles each Template file for the Plugin Frontend (e.g. Settings Dashboard, Public pages, ...).</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Base.html"><abbr title="\MCI_Footnotes_Widget_Base">MCI_Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Base.html"><abbr title="\Footnotes_Widget_Base">Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dd>Base Class for all Plugin Widgets. Registers each Widget to WordPress.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Reference-Container.html"><abbr title="\MCI_Footnotes_Widget_Reference_Container">MCI_Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Reference-Container.html"><abbr title="\Footnotes_Widget_Reference_Container">Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dd>Registers a Widget to put the Reference Container to the widget area.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-WYSIWYG.html"><abbr title="\MCI_Footnotes_WYSIWYG">MCI_Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-WYSIWYG.html"><abbr title="\Footnotes_WYSIWYG">Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dd>Handles the WSYIWYG-Buttons.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
<h3 id="toc">
|
||||
Table of Contents
|
||||
<a href="#toc" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -function -">
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files">mci_footnotes_require_php_files()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Requires (`require_once`) all `*.php` files inside a specific Directory.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="phpdocumentor-functions">
|
||||
<h3 class="phpdocumentor-elements__header" id="functions">
|
||||
Functions
|
||||
<a href="namespaces/default.html#functions" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -function - ">
|
||||
<h4 class="phpdocumentor-element__name" id="function_mci_footnotes_require_php_files">
|
||||
mci_footnotes_require_php_files()
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/includes.php"><a href="files/src-includes.html"><abbr title="src/includes.php">includes.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Requires (`require_once`) all `*.php` files inside a specific Directory.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility"></span>
|
||||
<span class="phpdocumentor-signature__name">mci_footnotes_require_php_files</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string </span><span class="phpdocumentor-signature__argument__name">$p_str_directory</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
|
||||
<dl class="phpdocumentor-argument-list">
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_str_directory</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">string</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Absolute Directory path to lookup for <code class="prettyprint">*.php</code> files.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
Tags
|
||||
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h5>
|
||||
<dl class="phpdocumentor-tag-list">
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">author</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>Stefan Herndler</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">1.5.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
|
|
|
@ -1,123 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Documentation</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<base href="../">
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/template.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/js/all.min.js" integrity="sha256-0vuk8LXoyrmCjp1f0O300qo1M75ZQyhH9X3J6d+scmk=" crossorigin="anonymous"></script>
|
||||
<script src="js/search.js"></script>
|
||||
<script defer src="js/searchIndex.js"></script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<header class="phpdocumentor-header phpdocumentor-section">
|
||||
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
|
||||
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
|
||||
<label class="phpdocumentor-header__menu-icon" for="menu-button">
|
||||
<i class="fas fa-bars"></i>
|
||||
</label>
|
||||
<section data-search-form class="phpdocumentor-search">
|
||||
<label>
|
||||
<span class="visually-hidden">Search for</span>
|
||||
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
|
||||
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
|
||||
</svg>
|
||||
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
|
||||
</label>
|
||||
</section>
|
||||
|
||||
<nav class="phpdocumentor-topnav">
|
||||
<ul class="phpdocumentor-topnav__menu">
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="phpdocumentor">
|
||||
<div class="phpdocumentor-section">
|
||||
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
|
||||
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
|
||||
Menu
|
||||
</label>
|
||||
<aside class="phpdocumentor-column -four phpdocumentor-sidebar">
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="packages/footnotes.html"><abbr title="\footnotes">footnotes</abbr></a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="packages/footdnotes.html"><abbr title="\footdnotes">footdnotes</abbr></a></h3>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
|
||||
</section>
|
||||
</aside>
|
||||
|
||||
<div class="phpdocumentor-column -eight phpdocumentor-content">
|
||||
<ul class="phpdocumentor-breadcrumbs">
|
||||
</ul>
|
||||
|
||||
<article class="phpdocumentor-element -package">
|
||||
<h2 class="phpdocumentor-content__title">footdnotes</h2>
|
||||
|
||||
|
||||
|
||||
<h3 id="interfaces_class_traits">
|
||||
Interfaces, Classes and Traits
|
||||
<a href="#interfaces_class_traits" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Hooks.html"><abbr title="\MCI_Footnotes_Hooks">MCI_Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress Hooks and executes them on demand.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
<header class="phpdocumentor-search-results__header">
|
||||
<h2 class="phpdocumentor-search-results__title">Search results</h2>
|
||||
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
|
||||
</header>
|
||||
<section class="phpdocumentor-search-results__body">
|
||||
<ul class="phpdocumentor-search-results__entries"></ul>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="packages/footdnotes.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
cssVars({});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
109
docs/packages/footnotes-WPDashboard.html
Normal file
|
@ -0,0 +1,109 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Documentation</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<base href="../">
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/template.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/js/all.min.js" integrity="sha256-0vuk8LXoyrmCjp1f0O300qo1M75ZQyhH9X3J6d+scmk=" crossorigin="anonymous"></script>
|
||||
<script src="js/search.js"></script>
|
||||
<script defer src="js/searchIndex.js"></script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<header class="phpdocumentor-header phpdocumentor-section">
|
||||
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
|
||||
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
|
||||
<label class="phpdocumentor-header__menu-icon" for="menu-button">
|
||||
<i class="fas fa-bars"></i>
|
||||
</label>
|
||||
<section data-search-form class="phpdocumentor-search">
|
||||
<label>
|
||||
<span class="visually-hidden">Search for</span>
|
||||
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
|
||||
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
|
||||
</svg>
|
||||
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
|
||||
</label>
|
||||
</section>
|
||||
|
||||
<nav class="phpdocumentor-topnav">
|
||||
<ul class="phpdocumentor-topnav__menu">
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="phpdocumentor">
|
||||
<div class="phpdocumentor-section">
|
||||
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
|
||||
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
|
||||
Menu
|
||||
</label>
|
||||
<aside class="phpdocumentor-column -four phpdocumentor-sidebar">
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-namespace"><a href="namespaces/default.html"><abbr title="\">Global</abbr></a></h3>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
|
||||
</section>
|
||||
|
||||
<section class="phpdocumentor-sidebar__category">
|
||||
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
|
||||
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
|
||||
</section>
|
||||
</aside>
|
||||
|
||||
<div class="phpdocumentor-column -eight phpdocumentor-content">
|
||||
<ul class="phpdocumentor-breadcrumbs">
|
||||
<li class="phpdocumentor-breadcrumb"><a href="packages/footnotes.html">footnotes</a></li>
|
||||
</ul>
|
||||
|
||||
<article class="phpdocumentor-element -package">
|
||||
<h2 class="phpdocumentor-content__title">WPDashboard</h2>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
<header class="phpdocumentor-search-results__header">
|
||||
<h2 class="phpdocumentor-search-results__title">Search results</h2>
|
||||
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
|
||||
</header>
|
||||
<section class="phpdocumentor-search-results__body">
|
||||
<ul class="phpdocumentor-search-results__entries"></ul>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<a href="packages/footnotes-WPDashboard.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
cssVars({});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -75,7 +75,15 @@
|
|||
<article class="phpdocumentor-element -package">
|
||||
<h2 class="phpdocumentor-content__title">footnotes</h2>
|
||||
|
||||
|
||||
<h3 id="packages">
|
||||
Packages
|
||||
<a href="#packages" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -package"><a href="packages/footnotes-WPDashboard.html"><abbr title="\footnotes\WPDashboard">WPDashboard</abbr></a></dt>
|
||||
</dl>
|
||||
|
||||
|
||||
<h3 id="interfaces_class_traits">
|
||||
Interfaces, Classes and Traits
|
||||
|
@ -84,42 +92,122 @@
|
|||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Config.html"><abbr title="\MCI_Footnotes_Config">MCI_Footnotes_Config</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Config.html"><abbr title="\Footnotes_Config">Footnotes_Config</abbr></a></dt>
|
||||
<dd>Contains all Plugin Constants. Contains no Method or Property.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Convert.html"><abbr title="\MCI_Footnotes_Convert">MCI_Footnotes_Convert</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Convert.html"><abbr title="\Footnotes_Convert">Footnotes_Convert</abbr></a></dt>
|
||||
<dd>Converts data types and Footnotes specific values.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Init.html"><abbr title="\MCI_Footnotes_Layout_Init">MCI_Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Init.html"><abbr title="\Footnotes_Layout_Init">Footnotes_Layout_Init</abbr></a></dt>
|
||||
<dd>Handles the Settings interface of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Engine.html"><abbr title="\MCI_Footnotes_Layout_Engine">MCI_Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Engine.html"><abbr title="\Footnotes_Layout_Engine">Footnotes_Layout_Engine</abbr></a></dt>
|
||||
<dd>Layout Engine for the administration dashboard.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Layout-Settings.html"><abbr title="\MCI_Footnotes_Layout_Settings">MCI_Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Layout-Settings.html"><abbr title="\Footnotes_Layout_Settings">Footnotes_Layout_Settings</abbr></a></dt>
|
||||
<dd>Displays and handles all Settings of the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Hooks.html"><abbr title="\MCI_Footnotes_Hooks">MCI_Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress Hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes.html"><abbr title="\MCI_Footnotes">MCI_Footnotes</abbr></a></dt>
|
||||
<dd>Entry point of the Plugin. Loads the Dashboard and executes the Task.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Language.html"><abbr title="\MCI_Footnotes_Language">MCI_Footnotes_Language</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Hooks.html"><abbr title="\Footnotes_Hooks">Footnotes_Hooks</abbr></a></dt>
|
||||
<dd>Registers all WordPress hooks and executes them on demand.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes.html"><abbr title="\Footnotes">Footnotes</abbr></a></dt>
|
||||
<dd>Provides an entry point to the Plugin.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Language.html"><abbr title="\Footnotes_Language">Footnotes_Language</abbr></a></dt>
|
||||
<dd>Loads text domain of current or default language for localization.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Settings.html"><abbr title="\MCI_Footnotes_Settings">MCI_Footnotes_Settings</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Settings.html"><abbr title="\Footnotes_Settings">Footnotes_Settings</abbr></a></dt>
|
||||
<dd>Loads the settings values, sets to default values if undefined.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Task.html"><abbr title="\MCI_Footnotes_Task">MCI_Footnotes_Task</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Task.html"><abbr title="\Footnotes_Task">Footnotes_Task</abbr></a></dt>
|
||||
<dd>Searches and replaces the footnotes and generates the reference container.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Template.html"><abbr title="\MCI_Footnotes_Template">MCI_Footnotes_Template</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Template.html"><abbr title="\Footnotes_Template">Footnotes_Template</abbr></a></dt>
|
||||
<dd>Handles each Template file for the Plugin Frontend (e.g. Settings Dashboard, Public pages, ...).</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Base.html"><abbr title="\MCI_Footnotes_Widget_Base">MCI_Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Base.html"><abbr title="\Footnotes_Widget_Base">Footnotes_Widget_Base</abbr></a></dt>
|
||||
<dd>Base Class for all Plugin Widgets. Registers each Widget to WordPress.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-Widget-Reference-Container.html"><abbr title="\MCI_Footnotes_Widget_Reference_Container">MCI_Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-Widget-Reference-Container.html"><abbr title="\Footnotes_Widget_Reference_Container">Footnotes_Widget_Reference_Container</abbr></a></dt>
|
||||
<dd>Registers a Widget to put the Reference Container to the widget area.</dd>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/MCI-Footnotes-WYSIWYG.html"><abbr title="\MCI_Footnotes_WYSIWYG">MCI_Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dt class="phpdocumentor-table-of-contents__entry -class"><a href="classes/Footnotes-WYSIWYG.html"><abbr title="\Footnotes_WYSIWYG">Footnotes_WYSIWYG</abbr></a></dt>
|
||||
<dd>Handles the WSYIWYG-Buttons.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
<h3 id="toc">
|
||||
Table of Contents
|
||||
<a href="#toc" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
|
||||
<dl class="phpdocumentor-table-of-contents">
|
||||
<dt class="phpdocumentor-table-of-contents__entry -function -">
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files">mci_footnotes_require_php_files()</a>
|
||||
<span>
|
||||
: mixed </span>
|
||||
</dt>
|
||||
<dd>Requires (`require_once`) all `*.php` files inside a specific Directory.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="phpdocumentor-functions">
|
||||
<h3 class="phpdocumentor-elements__header" id="functions">
|
||||
Functions
|
||||
<a href="packages/footnotes.html#functions" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h3>
|
||||
<article class="phpdocumentor-element -function - ">
|
||||
<h4 class="phpdocumentor-element__name" id="function_mci_footnotes_require_php_files">
|
||||
mci_footnotes_require_php_files()
|
||||
<a href="namespaces/default.html#function_mci_footnotes_require_php_files" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h4>
|
||||
<aside class="phpdocumentor-element-found-in">
|
||||
<abbr class="phpdocumentor-element-found-in__file" title="src/includes.php"><a href="files/src-includes.html"><abbr title="src/includes.php">includes.php</abbr></a></abbr>
|
||||
:
|
||||
<span class="phpdocumentor-element-found-in__line">17</span>
|
||||
</aside>
|
||||
|
||||
<p class="phpdocumentor-summary">Requires (`require_once`) all `*.php` files inside a specific Directory.</p>
|
||||
|
||||
<code class="phpdocumentor-code phpdocumentor-signature ">
|
||||
<span class="phpdocumentor-signature__visibility"></span>
|
||||
<span class="phpdocumentor-signature__name">mci_footnotes_require_php_files</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string </span><span class="phpdocumentor-signature__argument__name">$p_str_directory</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
|
||||
<dl class="phpdocumentor-argument-list">
|
||||
<dt class="phpdocumentor-argument-list__entry">
|
||||
<span class="phpdocumentor-signature__argument__name">$p_str_directory</span>
|
||||
: <span class="phpdocumentor-signature__argument__return-type">string</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-argument-list__definition">
|
||||
<section class="phpdocumentor-description"><p>Absolute Directory path to lookup for <code class="prettyprint">*.php</code> files.</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
<h5 class="phpdocumentor-tag-list__heading" id="tags">
|
||||
Tags
|
||||
<a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
|
||||
</h5>
|
||||
<dl class="phpdocumentor-tag-list">
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">author</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
|
||||
<section class="phpdocumentor-description"><p>Stefan Herndler</p>
|
||||
</section>
|
||||
|
||||
</dd>
|
||||
<dt class="phpdocumentor-tag-list__entry">
|
||||
<span class="phpdocumentor-tag__name">since</span>
|
||||
</dt>
|
||||
<dd class="phpdocumentor-tag-list__definition">
|
||||
<span class="phpdocumentor-tag-link">1.5.0</span>
|
||||
|
||||
<section class="phpdocumentor-description"></section>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
|
||||
<section class="phpdocumentor-search-results__dialog">
|
||||
|
|
|
@ -80,22 +80,18 @@
|
|||
<h3>Table of Contents</h3>
|
||||
<table class="phpdocumentor-table_of_contents">
|
||||
<tr>
|
||||
<td class="phpdocumentor-cell"><a href="reports/errors.html#class/dashboard/subpage-main.php">class/dashboard/subpage-main.php</a></td>
|
||||
<td class="phpdocumentor-cell"><a href="reports/errors.html#src/class/dashboard/subpage-main.php">src/class/dashboard/subpage-main.php</a></td>
|
||||
<td class="phpdocumentor-cell">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="phpdocumentor-cell"><a href="reports/errors.html#class/hooks.php">class/hooks.php</a></td>
|
||||
<td class="phpdocumentor-cell">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="phpdocumentor-cell"><a href="reports/errors.html#class/language.php">class/language.php</a></td>
|
||||
<td class="phpdocumentor-cell"><a href="reports/errors.html#src/class/language.php">src/class/language.php</a></td>
|
||||
<td class="phpdocumentor-cell">1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<a id="class/dashboard/subpage-main.php"></a>
|
||||
<h3><abbr title="class/dashboard/subpage-main.php">subpage-main.php</abbr></h3>
|
||||
<a id="src/class/dashboard/subpage-main.php"></a>
|
||||
<h3><abbr title="src/class/dashboard/subpage-main.php">subpage-main.php</abbr></h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -112,26 +108,8 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<a id="class/hooks.php"></a>
|
||||
<h3><abbr title="class/hooks.php">hooks.php</abbr></h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="phpdocumentor-heading">Type</th>
|
||||
<th class="phpdocumentor-heading">Line</th>
|
||||
<th class="phpdocumentor-heading">Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="phpdocumentor-cell">ERROR</td>
|
||||
<td class="phpdocumentor-cell">0</td>
|
||||
<td class="phpdocumentor-cell">Tag "see" with body "@see class/settings.php" has error "\class/settings.php" is not a valid Fqsen.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<a id="class/language.php"></a>
|
||||
<h3><abbr title="class/language.php">language.php</abbr></h3>
|
||||
<a id="src/class/language.php"></a>
|
||||
<h3><abbr title="src/class/language.php">language.php</abbr></h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
26
js/jquery.tools.min.js
vendored
6307
package-lock.json
generated
55
package.json
|
@ -1,24 +1,63 @@
|
|||
{
|
||||
"scripts": {
|
||||
"cm": "cz",
|
||||
"format": "npm run format:js",
|
||||
"format:fix": "npm run format:js:fix",
|
||||
"format:js": "prettier --config .prettierrc './js/*.js'",
|
||||
"format:js": "prettier --config .prettierrc './src/**/*.js'",
|
||||
"format:js:fix": "npm run format:js -- --write",
|
||||
"lint": "npm run lint:js && npm run lint:css",
|
||||
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
|
||||
"lint:js": "eslint \"./js/*.js\"",
|
||||
"lint": "npm run lint:js && npm run lint:css && npm run lint:md",
|
||||
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix && npm run lint:md:fix",
|
||||
"lint:php": "composer run lint:php",
|
||||
"lint:php:fix": "composer run lint:php:fix",
|
||||
"lint:js": "eslint \"./src/**/*.js\"",
|
||||
"lint:js:fix": "npm run lint:js -- --fix",
|
||||
"lint:css": "stylelint \"./css/*.css\"",
|
||||
"lint:css:fix": "npm run lint:css -- --fix"
|
||||
"lint:css": "stylelint \"./src/**/*.css\"",
|
||||
"lint:css:fix": "npm run lint:css -- --fix",
|
||||
"lint:md": "markdownlint '*.md'",
|
||||
"lint:md:fix": "npm run lint:md -- --fix",
|
||||
"minify": "npm run minify:css && npm run minify:js",
|
||||
"minify:css": "for f in ./tmp/css/*.css; do npx minify $f > ./dist/css/$(basename $f .css).min.css; done",
|
||||
"minify:js": "for f in ./src/js/*.js; do npx minify $f > ./dist/js/$(basename $f .js).min.js; done"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged",
|
||||
"pre-push": "composer run docs && git add docs && git commit -m \"docs: update documentation\" --no-verify"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.php": [
|
||||
"composer run lint:php"
|
||||
],
|
||||
"*.js": [
|
||||
"npm run format:js:fix",
|
||||
"npm run lint:js"
|
||||
],
|
||||
"*.(sa|sc|c)ss": [
|
||||
"npm run lint:css"
|
||||
],
|
||||
"*.md": [
|
||||
"npm run lint:md"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"eslint": "^7.24.0",
|
||||
"eslint-config-prettier": "^8.2.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"husky": "^4.3.8",
|
||||
"lint-staged": "^10.5.4",
|
||||
"markdownlint-cli": "^0.27.1",
|
||||
"minify": "^7.0.1",
|
||||
"prettier": "^2.2.1",
|
||||
"stylelint": "^13.12.0",
|
||||
"stylelint-config-wordpress": "^17.0.0"
|
||||
},
|
||||
"license": "GPL-3.0"
|
||||
}
|
||||
"license": "GPL-3.0",
|
||||
"config": {
|
||||
"commitizen": {
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,17 +11,13 @@
|
|||
<version number="3.0">
|
||||
<api format="php">
|
||||
<source dsn=".">
|
||||
<path>class</path>
|
||||
<path>src</path>
|
||||
</source>
|
||||
<output>docs</output>
|
||||
<ignore hidden="true" symlinks="true">
|
||||
<path>vendor/*</path>
|
||||
<path>node-modules/*</path>
|
||||
</ignore>
|
||||
<extensions>
|
||||
<extension>php</extension>
|
||||
</extensions>
|
||||
<default-package-name>Footnotes</default-package-name>
|
||||
<default-package-name>footnotes</default-package-name>
|
||||
<include-source>true</include-source>
|
||||
</api>
|
||||
</version>
|
||||
|
|