mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
added '@access private' docblock tags to functions that should not be called directly
This commit is contained in:
parent
3903e0729b
commit
da72d76d30
@ -2844,12 +2844,13 @@ function get_string($identifier, $module='', $a=NULL) {
|
||||
/**
|
||||
* This function is only used from {@link get_string()}.
|
||||
*
|
||||
* @internal Only used from get_string, not meant to be public api
|
||||
* @internal Only used from get_string, not meant to be public API
|
||||
* @param string $identifier ?
|
||||
* @param string $langfile ?
|
||||
* @param string $destination ?
|
||||
* @return string|false ?
|
||||
* @staticvar array $strings Localized strings
|
||||
* @access private
|
||||
* @todo Finish documenting this function.
|
||||
*/
|
||||
function get_string_from_file($identifier, $langfile, $destination) {
|
||||
|
@ -73,6 +73,7 @@ function xmlize($data, $WHITE=1, $encoding='UTF-8') {
|
||||
* @internal You don't need to do anything with this function, it's called by
|
||||
* xmlize. It's a recursive function, calling itself as it goes deeper
|
||||
* into the xml levels. If you make any improvements, please let me know.
|
||||
* @access private
|
||||
*/
|
||||
function xml_depth($vals, &$i) {
|
||||
$children = array();
|
||||
|
Loading…
x
Reference in New Issue
Block a user