mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/10933] Expanded prose documentation for phpbb_extension_provider.
PHPBB3-10933
This commit is contained in:
parent
c3fb0f359c
commit
d7a626c70b
1 changed files with 10 additions and 2 deletions
|
@ -16,7 +16,15 @@ if (!defined('IN_PHPBB'))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides a set of items found in extensions
|
* Provides a set of items found in extensions.
|
||||||
|
*
|
||||||
|
* This abstract class is essentially a wrapper around item-specific
|
||||||
|
* finding logic. It handles storing the extension manager via constructor
|
||||||
|
* for the finding logic to use to find the items, and provides an
|
||||||
|
* iterator interface over the items found by the finding logic.
|
||||||
|
*
|
||||||
|
* Items could be anything, for example template paths or cron task names.
|
||||||
|
* Derived classes completely define what the items are.
|
||||||
*
|
*
|
||||||
* @package extension
|
* @package extension
|
||||||
*/
|
*/
|
||||||
|
@ -45,7 +53,7 @@ abstract class phpbb_extension_provider implements IteratorAggregate
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds template paths using the extension manager.
|
* Finds items using the extension manager.
|
||||||
*
|
*
|
||||||
* @return array List of task names
|
* @return array List of task names
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue