本文整理汇总了PHP中Docs::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Docs::add方法的具体用法?PHP Docs::add怎么用?PHP Docs::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Docs
的用法示例。
在下文中一共展示了Docs::add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
Docs::add('user_authed_name', $text);
/*
user_authed_email
*/
$text = 'Returns the email address of the currently logged-in user. Not recommended for display usage.';
Docs::add('user_authed_email', $text);
/*
user_authed_role
*/
$text = 'Returns the role of the currently logged-in user. Can be <b>administrator</b>, <b>editor</b>, or <b>user</b>.';
Docs::add('user_authed_role', $text);
/*
user_authed_real_name
*/
$text = 'Returns the real name of the currently logged-in user, as set in the admin panel.';
Docs::add('user_authed_role', $text);
?>
<hgroup role="banner">
<h1>Documentation</h1>
</hgroup>
<section id="content">
<?php
require PATH . 'includes/sidebar' . EXT;
?>
<div class="primary">
<h2>Theme functions</h2>
<p>At its core, Anchor is HTML and CSS, with sprinkles of all-important PHP, to dynamically retrieve and serve all the data. Don’t worry, though, it’s pretty painless. Here is a comprehensive list of all the functions available to you and your Anchor theme.</p>