api-8.x-1.x-dev/tests/files/sample/subdirectory/sample-subdir.php
tests/files/sample/subdirectory/sample-subdir.php
<?php
/**
* @file
* A sample file in a subdirectory.
*/
/**
* @addtogroup samp_GRP-6.x
* @{
*/
/**
* A sample global in a subdirectory.
*/
global $sample_in_sub_dir_global;
/**
* A sample constant.
*/
define('SAMPLE_CONSTANT_IN_SUB_DIR', 10);
/**
* Another sample function; in a sub-directory.
*
* Used for sample and testing URLs.
*
* @param $parameter
* A generic parameter.
* @param $complex_parameter
* Something about the parameter.
*
* @return
* Something about the return value.
*
* @see SAMPLE_CONSTANT_IN_SUB_DIR
* @see sample_function()
*/
function sample_insubdir_function($parameter, $complex_parameter) {
}
/**
* @} end addtogroup samp_GRP-6.x
*/
