Template:FunctionPage: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>StDoodle mNo edit summary |
||
Line 4: | Line 4: | ||
{{FunctionPage | | {{FunctionPage | | ||
page_name=FUNCTION_NAME | | page_name=FUNCTION_NAME | | ||
function_category=CATEGORY | | |||
function1_return_type=DATATYPE | | function1_return_type=DATATYPE | | ||
function1_returns_also=SECONDARY_DATAYPE_OR_DELETE | | function1_returns_also=SECONDARY_DATAYPE_OR_DELETE | | ||
Line 115: | Line 116: | ||
{{#if: {{{code1|}}}|{{{code1}}}}}{{#if: {{{code2|}}}|{{{code2}}}}}{{#if: {{{code3|}}}|{{{code3}}}}}{{#if: {{{code5|}}}|{{{code4}}}}}{{#if: {{{code5|}}}|{{{code5}}}}}{{#if: {{{cli_equiv|}}}|<h2>CLI Equivalent</h2><p>{{{cli_equiv}}}</p>}}{{#if: {{{see_also|}}}|{{{see_also|}}}}}{{#if: {{{more_info|}}}|<h2>More Information</h2><p>{{{more_info}}}</p>}}{{#if: {{{special|}}}|<h2>Special</h2><p>{{{special}}}</p>}} | {{#if: {{{code1|}}}|{{{code1}}}}}{{#if: {{{code2|}}}|{{{code2}}}}}{{#if: {{{code3|}}}|{{{code3}}}}}{{#if: {{{code5|}}}|{{{code4}}}}}{{#if: {{{code5|}}}|{{{code5}}}}}{{#if: {{{cli_equiv|}}}|<h2>CLI Equivalent</h2><p>{{{cli_equiv}}}</p>}}{{#if: {{{see_also|}}}|{{{see_also|}}}}}{{#if: {{{more_info|}}}|<h2>More Information</h2><p>{{{more_info}}}</p>}}{{#if: {{{special|}}}|<h2>Special</h2><p>{{{special}}}</p>}} | ||
[[Category:Ash Functions]] | [[Category:Ash Functions]] | ||
{{#if: {{{function_category|}}}|[[Category:{{{function_category}}}]]}} | |||
</includeonly> | </includeonly> |
Revision as of 12:43, 25 February 2010
This is template for a function page (for just a function line, see "Template:Function").
The following is the full function call with all possible parameters. Please note that you would rarely, if ever, require everything shown.
{{FunctionPage | page_name=FUNCTION_NAME | function_category=CATEGORY | function1_return_type=DATATYPE | function1_returns_also=SECONDARY_DATAYPE_OR_DELETE | function1_parameter1={{Param|TYPE|SHORTDESC}} | function1_parameter1_desc= DESCRIPTION_OF_PARAM | function1_parameter2={{Param|TYPE|SHORTDESC}} | function1_parameter2_desc= DESCRIPTION_OF_PARAM | function1_parameter3={{Param|TYPE|SHORTDESC}} | function1_parameter3_desc= DESCRIPTION_OF_PARAM | function1_parameter4={{Param|TYPE|SHORTDESC}} | function1_parameter4_desc= DESCRIPTION_OF_PARAM | function1_parameter5={{Param|TYPE|SHORTDESC}} | function1_parameter5_desc= DESCRIPTION_OF_PARAM | function2_return_type=DATATYPE | function2_returns_also=SECONDARY_DATAYPE_OR_DELETE | function2_parameter1={{Param|TYPE|SHORTDESC}} | function2_parameter1_desc= DESCRIPTION_OF_PARAM | function2_parameter2={{Param|TYPE|SHORTDESC}} | function2_parameter2_desc= DESCRIPTION_OF_PARAM | function2_parameter3={{Param|TYPE|SHORTDESC}} | function2_parameter3_desc= DESCRIPTION_OF_PARAM | function2_parameter4={{Param|TYPE|SHORTDESC}} | function2_parameter4_desc= DESCRIPTION_OF_PARAM | function2_parameter5={{Param|TYPE|SHORTDESC}} | function2_parameter5_desc= DESCRIPTION_OF_PARAM | function3_return_type=DATATYPE | function3_returns_also=SECONDARY_DATAYPE_OR_DELETE | function3_parameter1={{Param|TYPE|SHORTDESC}} | function3_parameter1_desc= DESCRIPTION_OF_PARAM | function3_parameter2={{Param|TYPE|SHORTDESC}} | function3_parameter2_desc= DESCRIPTION_OF_PARAM | function3_parameter3={{Param|TYPE|SHORTDESC}} | function3_parameter3_desc= DESCRIPTION_OF_PARAM | function3_parameter4={{Param|TYPE|SHORTDESC}} | function3_parameter4_desc= DESCRIPTION_OF_PARAM | function3_parameter5={{Param|TYPE|SHORTDESC}} | function3_parameter5_desc= DESCRIPTION_OF_PARAM | function4_return_type=DATATYPE | function4_returns_also=SECONDARY_DATAYPE_OR_DELETE | function4_parameter1={{Param|TYPE|SHORTDESC}} | function4_parameter1_desc= DESCRIPTION_OF_PARAM | function4_parameter2={{Param|TYPE|SHORTDESC}} | function4_parameter2_desc= DESCRIPTION_OF_PARAM | function4_parameter3={{Param|TYPE|SHORTDESC}} | function4_parameter3_desc= DESCRIPTION_OF_PARAM | function4_parameter4={{Param|TYPE|SHORTDESC}} | function4_parameter4_desc= DESCRIPTION_OF_PARAM | function4_parameter5={{Param|TYPE|SHORTDESC}} | function4_parameter5_desc= DESCRIPTION_OF_PARAM | function5_return_type=DATATYPE | function5_returns_also=SECONDARY_DATAYPE_OR_DELETE | function5_parameter1={{Param|TYPE|SHORTDESC}} | function5_parameter1_desc= DESCRIPTION_OF_PARAM | function5_parameter2={{Param|TYPE|SHORTDESC}} | function5_parameter2_desc= DESCRIPTION_OF_PARAM | function5_parameter3={{Param|TYPE|SHORTDESC}} | function5_parameter3_desc= DESCRIPTION_OF_PARAM | function5_parameter4={{Param|TYPE|SHORTDESC}} | function5_parameter4_desc= DESCRIPTION_OF_PARAM | function5_parameter5={{Param|TYPE|SHORTDESC}} | function5_parameter5_desc= DESCRIPTION_OF_PARAM | function_description=DESCRIPTION_OF_FUNCTION | code1={{CodeSample | title=CODE EXAMPLE TITLE | description=DESCRIPTION OF CODE | code= <syntaxhighlight lang="c"> CODE GOES HERE </syntaxhighlight>}} | code2={{CodeSample | title=CODE EXAMPLE TITLE | description=DESCRIPTION OF CODE | code= <syntaxhighlight lang="c"> CODE GOES HERE </syntaxhighlight>}} | code3={{CodeSample | title=CODE EXAMPLE TITLE | description=DESCRIPTION OF CODE | code= <syntaxhighlight lang="c"> CODE GOES HERE </syntaxhighlight>}} | code4={{CodeSample | title=CODE EXAMPLE TITLE | description=DESCRIPTION OF CODE | code= <syntaxhighlight lang="c"> CODE GOES HERE </syntaxhighlight>}} | code5={{CodeSample | title=CODE EXAMPLE TITLE | description=DESCRIPTION OF CODE | code= <syntaxhighlight lang="c"> CODE GOES HERE </syntaxhighlight>}} | see_also={{SeeAlso|FIRST|SECOND|ETC}} | cli_equiv=LIST CLI EQUIVALENT | special=SPECIAL NOTES SUCH AS NOT-LOGGED-IN VALUE }}
Replace everything in CAPS with appropriate information for the given page.