Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
c803fb90df
53
boot.php
53
boot.php
@ -43,7 +43,7 @@ require_once('include/taxonomy.php');
|
||||
define ( 'RED_PLATFORM', 'Red Matrix' );
|
||||
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R');
|
||||
define ( 'ZOT_REVISION', 1 );
|
||||
define ( 'DB_UPDATE_VERSION', 1059 );
|
||||
define ( 'DB_UPDATE_VERSION', 1064 );
|
||||
|
||||
define ( 'EOL', '<br />' . "\r\n" );
|
||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||
@ -190,13 +190,10 @@ define ( 'PAGE_HIDDEN', 0x0001 );
|
||||
define ( 'PAGE_AUTOCONNECT', 0x0002 );
|
||||
define ( 'PAGE_APPLICATION', 0x0004 );
|
||||
define ( 'PAGE_DIRECTORY_CHANNEL', 0x0008 ); // system channel used for directory synchronisation
|
||||
define ( 'PAGE_PREMIUM', 0x0010 );
|
||||
|
||||
define ( 'PAGE_REMOVED', 0x8000 );
|
||||
|
||||
//define ( 'PAGE_FREELOVE', 3 );
|
||||
//define ( 'PAGE_BLOG', 4 );
|
||||
//define ( 'PAGE_PRVGROUP', 5 );
|
||||
|
||||
|
||||
/**
|
||||
* Photo types
|
||||
@ -1557,8 +1554,9 @@ function profile_load(&$a, $nickname, $profile = '') {
|
||||
|
||||
$a->page['title'] = $a->profile['channel_name'] . " - " . $a->profile['channel_address'] . "@" . $a->get_hostname();
|
||||
|
||||
|
||||
$a->profile['channel_mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme');
|
||||
$_SESSION['theme'] = $a->profile['channel_theme'];
|
||||
$_SESSION['mobile_theme'] = $a->profile['channel_mobile_theme'];
|
||||
|
||||
/**
|
||||
* load/reload current theme info
|
||||
@ -1574,11 +1572,11 @@ function profile_load(&$a, $nickname, $profile = '') {
|
||||
return;
|
||||
}
|
||||
|
||||
function profile_create_sidebar(&$a) {
|
||||
function profile_create_sidebar(&$a,$connect = true) {
|
||||
|
||||
$block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
|
||||
|
||||
$a->set_widget('profile',profile_sidebar($a->profile, $block));
|
||||
$a->set_widget('profile',profile_sidebar($a->profile, $block, $connect));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1600,7 +1598,7 @@ function profile_create_sidebar(&$a) {
|
||||
|
||||
|
||||
|
||||
function profile_sidebar($profile, $block = 0) {
|
||||
function profile_sidebar($profile, $block = 0, $show_connect = true) {
|
||||
|
||||
$a = get_app();
|
||||
|
||||
@ -1625,11 +1623,20 @@ function profile_sidebar($profile, $block = 0) {
|
||||
|
||||
require_once('include/Contact.php');
|
||||
|
||||
$connect_url = rconnect_url($profile['uid'],get_observer_hash());
|
||||
$connect = (($connect_url) ? t('Connect') : '');
|
||||
if($show_connect) {
|
||||
|
||||
if($connect_url)
|
||||
$connect_url = $connect_url . '/follow?f=1&url=' . $profile['channel_address'] . '@' . $a->get_hostname();
|
||||
// This will return an empty string if we're already connected.
|
||||
|
||||
$connect_url = rconnect_url($profile['uid'],get_observer_hash());
|
||||
$connect = (($connect_url) ? t('Connect') : '');
|
||||
if($connect_url)
|
||||
$connect_url = sprintf($connect_url,urlencode($profile['channel_address'] . '@' . $a->get_hostname()));
|
||||
|
||||
// premium channel - over-ride
|
||||
|
||||
if($profile['channel_pageflags'] & PAGE_PREMIUM)
|
||||
$connect_url = z_root() . '/connect/' . $profile['channel_address'];
|
||||
}
|
||||
|
||||
// show edit profile to yourself
|
||||
if($is_owner) {
|
||||
@ -1963,13 +1970,19 @@ function current_theme(){
|
||||
$is_mobile = $a->is_mobile || $a->is_tablet;
|
||||
|
||||
if($is_mobile) {
|
||||
$system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : '');
|
||||
$theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
|
||||
if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) {
|
||||
$system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
|
||||
$theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
|
||||
}
|
||||
else {
|
||||
$system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : '');
|
||||
$theme_name = ((isset($_SESSION) && x($_SESSION,'mobile_theme')) ? $_SESSION['mobile_theme'] : $system_theme);
|
||||
|
||||
if($theme_name === '---') {
|
||||
// user has selected to have the mobile theme be the same as the normal one
|
||||
$system_theme = '';
|
||||
$theme_name = '';
|
||||
if($theme_name === '---') {
|
||||
// user has selected to have the mobile theme be the same as the normal one
|
||||
$system_theme = '';
|
||||
$theme_name = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -2344,7 +2357,7 @@ function construct_page(&$a) {
|
||||
}
|
||||
|
||||
if($a->is_mobile || $a->is_tablet) {
|
||||
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
||||
if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) {
|
||||
$link = $a->get_baseurl() . '/toggle_mobile?f=&address=' . curPageURL();
|
||||
}
|
||||
else {
|
||||
|
4
bugs
4
bugs
@ -1,4 +0,0 @@
|
||||
- send refresh posts to everybody that needs to see it, e.g. when site url changes
|
||||
|
||||
- when you clear one type of notification or view the target item, clear the corresponding system notification. Issue: what to do about matrix/network posts where you might not have actually seen it.
|
||||
|
@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('Contact_8php.html','');});
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a2f4f495d53f2a334ab75292af79d3c91"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91">rconnect_url</a> ($channel_id, $xchan)</td></tr>
|
||||
<tr class="separator:a2f4f495d53f2a334ab75292af79d3c91"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ae8803c330352cbf1e828eb7490edf47e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e">abook_connections</a> ($channel_id, $sql_conditions= '')</td></tr>
|
||||
<tr class="separator:ae8803c330352cbf1e828eb7490edf47e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ad5b02c2a962ee55b1b7ca6c159d6e4c5"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5">abook_self</a> ($channel_id)</td></tr>
|
||||
@ -379,6 +381,34 @@ Functions</h2></td></tr>
|
||||
|
||||
<p>Referenced by <a class="el" href="randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090">randprof_init()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a2f4f495d53f2a334ab75292af79d3c91"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">rconnect_url </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$channel_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$xchan</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b">profile_sidebar()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="acc12cda999c88c4d6185cca967c15125"></a>
|
||||
|
@ -11,6 +11,7 @@ var Contact_8php =
|
||||
[ "contact_remove", "Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6", null ],
|
||||
[ "contacts_not_grouped", "Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc", null ],
|
||||
[ "random_profile", "Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c", null ],
|
||||
[ "rconnect_url", "Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91", null ],
|
||||
[ "remove_all_xchan_resources", "Contact_8php.html#acc12cda999c88c4d6185cca967c15125", null ],
|
||||
[ "terminate_friendship", "Contact_8php.html#a38daa1c210b78385307123450ca9a1fc", null ],
|
||||
[ "user_remove", "Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15", null ],
|
||||
|
File diff suppressed because one or more lines are too long
@ -63,6 +63,7 @@ var boot_8php =
|
||||
[ "ACCOUNT_PENDING", "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8", null ],
|
||||
[ "ACCOUNT_REMOVED", "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78", null ],
|
||||
[ "ACCOUNT_ROLE_ADMIN", "boot_8php.html#ac8400313df2c831653f9036f71ebd86d", null ],
|
||||
[ "ACCOUNT_ROLE_ALLOWCODE", "boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688", null ],
|
||||
[ "ACCOUNT_UNVERIFIED", "boot_8php.html#af3a4271630aabd8be592213f925d6a36", null ],
|
||||
[ "ACTIVITY_DISLIKE", "boot_8php.html#a0e57f846e6d47a308feced0f7274f178", null ],
|
||||
[ "ACTIVITY_FAVORITE", "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e", null ],
|
||||
@ -114,6 +115,7 @@ var boot_8php =
|
||||
[ "HUBLOC_FLAGS_PRIMARY", "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955", null ],
|
||||
[ "HUBLOC_FLAGS_UNVERIFIED", "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764", null ],
|
||||
[ "ITEM_BLOCKED", "boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f", null ],
|
||||
[ "ITEM_BUILDBLOCK", "boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf", null ],
|
||||
[ "ITEM_DELAYED_PUBLISH", "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20", null ],
|
||||
[ "ITEM_DELETED", "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49", null ],
|
||||
[ "ITEM_HIDDEN", "boot_8php.html#ac99fc4d040764eac1736bec6973556fe", null ],
|
||||
@ -151,6 +153,8 @@ var boot_8php =
|
||||
[ "MAIL_SEEN", "boot_8php.html#a1fbb93cf030f07391f22cc2948744869", null ],
|
||||
[ "MAX_IMAGE_LENGTH", "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", null ],
|
||||
[ "MAX_LIKERS", "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd", null ],
|
||||
[ "MENU_ITEM_NEWWIN", "boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5", null ],
|
||||
[ "MENU_ITEM_ZID", "boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53", null ],
|
||||
[ "NAMESPACE_ACTIVITY", "boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2", null ],
|
||||
[ "NAMESPACE_ACTIVITY_SCHEMA", "boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133", null ],
|
||||
[ "NAMESPACE_ATOM1", "boot_8php.html#a444ce608ce34efb82ee11852f36e825f", null ],
|
||||
|
@ -224,7 +224,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361">get_item_elements()</a>, <a class="el" href="items_8php.html#a94ddb1d6c8fa21dd7433677e85168037">get_mail_elements()</a>, <a class="el" href="item_8php.html#a693cd09805755ab85bbb5ecae69a48c3">item_post()</a>, <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store()</a>, <a class="el" href="post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75">post_post()</a>, <a class="el" href="include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd">send_message()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, <a class="el" href="zot_8php.html#a3862b3161b2c8557dc1a95020179bd81">zot_build_packet()</a>, and <a class="el" href="zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea">zot_fetch()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361">get_item_elements()</a>, <a class="el" href="items_8php.html#a94ddb1d6c8fa21dd7433677e85168037">get_mail_elements()</a>, <a class="el" href="item_8php.html#a693cd09805755ab85bbb5ecae69a48c3">item_post()</a>, <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store()</a>, <a class="el" href="post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75">post_post()</a>, <a class="el" href="include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd">send_message()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, <a class="el" href="zot_8php.html#a3862b3161b2c8557dc1a95020179bd81">zot_build_packet()</a>, and <a class="el" href="zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea">zot_fetch()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -270,7 +270,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="identity_8php.html#a345f4c943d84de502ec6e72d2c813945">create_identity()</a>, and <a class="el" href="hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92">hostxrd_init()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="account_8php.html#a141fe579c351c78209d425473f978eb5">create_account()</a>, <a class="el" href="identity_8php.html#a345f4c943d84de502ec6e72d2c813945">create_identity()</a>, and <a class="el" href="hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92">hostxrd_init()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -194,8 +194,12 @@ Files</h2></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:match_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="match_8php.html">match.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:mod_2menu_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="mod_2menu_8php.html">menu.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:mod_2message_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="mod_2message_8php.html">message.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:mitem_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="mitem_8php.html">mitem.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:mood_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="mood_8php.html">mood.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:msearch_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="msearch_8php.html">msearch.php</a></td></tr>
|
||||
|
@ -45,7 +45,9 @@ var dir_d41ce877eb409a4791b288730010abe2 =
|
||||
[ "magic.php", "magic_8php.html", "magic_8php" ],
|
||||
[ "manage.php", "manage_8php.html", "manage_8php" ],
|
||||
[ "match.php", "match_8php.html", "match_8php" ],
|
||||
[ "menu.php", "mod_2menu_8php.html", "mod_2menu_8php" ],
|
||||
[ "message.php", "mod_2message_8php.html", "mod_2message_8php" ],
|
||||
[ "mitem.php", "mitem_8php.html", "mitem_8php" ],
|
||||
[ "mood.php", "mood_8php.html", "mood_8php" ],
|
||||
[ "msearch.php", "msearch_8php.html", "msearch_8php" ],
|
||||
[ "network.php", "mod_2network_8php.html", "mod_2network_8php" ],
|
||||
|
@ -189,6 +189,8 @@ Files</h2></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:language_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="language_8php.html">language.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:include_2menu_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html">menu.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:include_2message_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2message_8php.html">message.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:nav_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="nav_8php.html">nav.php</a></td></tr>
|
||||
@ -205,6 +207,8 @@ Files</h2></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:onepoll_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="onepoll_8php.html">onepoll.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:page__widgets_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="page__widgets_8php.html">page_widgets.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:permissions_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="permissions_8php.html">permissions.php</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:include_2photos_8php"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2photos_8php.html">photos.php</a></td></tr>
|
||||
|
@ -54,6 +54,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 =
|
||||
] ],
|
||||
[ "items.php", "items_8php.html", "items_8php" ],
|
||||
[ "language.php", "language_8php.html", "language_8php" ],
|
||||
[ "menu.php", "include_2menu_8php.html", "include_2menu_8php" ],
|
||||
[ "message.php", "include_2message_8php.html", "include_2message_8php" ],
|
||||
[ "nav.php", "nav_8php.html", "nav_8php" ],
|
||||
[ "network.php", "include_2network_8php.html", "include_2network_8php" ],
|
||||
@ -62,6 +63,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 =
|
||||
[ "oauth.php", "oauth_8php.html", "oauth_8php" ],
|
||||
[ "oembed.php", "include_2oembed_8php.html", "include_2oembed_8php" ],
|
||||
[ "onepoll.php", "onepoll_8php.html", "onepoll_8php" ],
|
||||
[ "page_widgets.php", "page__widgets_8php.html", "page__widgets_8php" ],
|
||||
[ "permissions.php", "permissions_8php.html", "permissions_8php" ],
|
||||
[ "photos.php", "include_2photos_8php.html", "include_2photos_8php" ],
|
||||
[ "plugin.php", "plugin_8php.html", "plugin_8php" ],
|
||||
|
File diff suppressed because one or more lines are too long
@ -157,31 +157,33 @@ $(document).ready(function(){initNavTree('files.html','');});
|
||||
<tr id="row_0_38_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="ITemplateEngine_8php.html" target="_self">ITemplateEngine.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_39_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="items_8php.html" target="_self">items.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_40_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="language_8php.html" target="_self">language.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_41_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2message_8php.html" target="_self">message.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_42_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="nav_8php.html" target="_self">nav.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_43_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2network_8php.html" target="_self">network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_44_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="notifier_8php.html" target="_self">notifier.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_45_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2notify_8php.html" target="_self">notify.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_46_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="oauth_8php.html" target="_self">oauth.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_47_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2oembed_8php.html" target="_self">oembed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_48_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="onepoll_8php.html" target="_self">onepoll.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_49_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="permissions_8php.html" target="_self">permissions.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_50_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2photos_8php.html" target="_self">photos.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_51_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="plugin_8php.html" target="_self">plugin.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_52_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poller_8php.html" target="_self">poller.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_53_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__advanced_8php.html" target="_self">profile_advanced.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_54_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__selectors_8php.html" target="_self">profile_selectors.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_55_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="ProtoDriver_8php.html" target="_self">ProtoDriver.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_56_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="queue_8php.html" target="_self">queue.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_57_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="queue__fn_8php.html" target="_self">queue_fn.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_58_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="security_8php.html" target="_self">security.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_59_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="session_8php.html" target="_self">session.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_60_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="socgraph_8php.html" target="_self">socgraph.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_61_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="system__unavailable_8php.html" target="_self">system_unavailable.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_62_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="taxonomy_8php.html" target="_self">taxonomy.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_63_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="template__processor_8php.html" target="_self">template_processor.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_64_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="text_8php.html" target="_self">text.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_65_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zot_8php.html" target="_self">zot.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_41_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2menu_8php.html" target="_self">menu.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_42_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2message_8php.html" target="_self">message.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_43_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="nav_8php.html" target="_self">nav.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_44_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2network_8php.html" target="_self">network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_45_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="notifier_8php.html" target="_self">notifier.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_46_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2notify_8php.html" target="_self">notify.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_47_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="oauth_8php.html" target="_self">oauth.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_48_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2oembed_8php.html" target="_self">oembed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_49_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="onepoll_8php.html" target="_self">onepoll.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_50_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="page__widgets_8php.html" target="_self">page_widgets.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_51_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="permissions_8php.html" target="_self">permissions.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_52_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="include_2photos_8php.html" target="_self">photos.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_53_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="plugin_8php.html" target="_self">plugin.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_54_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poller_8php.html" target="_self">poller.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_55_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__advanced_8php.html" target="_self">profile_advanced.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_56_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__selectors_8php.html" target="_self">profile_selectors.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_57_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="ProtoDriver_8php.html" target="_self">ProtoDriver.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_58_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="queue_8php.html" target="_self">queue.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_59_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="queue__fn_8php.html" target="_self">queue_fn.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_60_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="security_8php.html" target="_self">security.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_61_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="session_8php.html" target="_self">session.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_62_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="socgraph_8php.html" target="_self">socgraph.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_63_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="system__unavailable_8php.html" target="_self">system_unavailable.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_64_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="taxonomy_8php.html" target="_self">taxonomy.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_65_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="template__processor_8php.html" target="_self">template_processor.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_66_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="text_8php.html" target="_self">text.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_67_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zot_8php.html" target="_self">zot.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_"><td class="entry"><img id="arr_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('1_')"/><img id="img_1_" src="ftv2folderclosed.png" alt="+" width="24" height="22" onclick="toggleFolder('1_')"/><a class="el" href="dir_d41ce877eb409a4791b288730010abe2.html" target="_self">mod</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="__well__known_8php.html" target="_self">_well_known.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="acl_8php.html" target="_self">acl.php</a></td><td class="desc"></td></tr>
|
||||
@ -228,73 +230,75 @@ $(document).ready(function(){initNavTree('files.html','');});
|
||||
<tr id="row_1_42_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="magic_8php.html" target="_self">magic.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_43_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="manage_8php.html" target="_self">manage.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_44_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="match_8php.html" target="_self">match.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2message_8php.html" target="_self">message.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mood_8php.html" target="_self">mood.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_47_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="msearch_8php.html" target="_self">msearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_48_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2network_8php.html" target="_self">network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_49_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="new__channel_8php.html" target="_self">new_channel.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_50_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="nogroup_8php.html" target="_self">nogroup.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_51_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="notifications_8php.html" target="_self">notifications.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_52_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2notify_8php.html" target="_self">notify.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_53_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2oembed_8php.html" target="_self">oembed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_54_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="oexchange_8php.html" target="_self">oexchange.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_55_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="opensearch_8php.html" target="_self">opensearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_56_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="page_8php.html" target="_self">page.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_57_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="parse__url_8php.html" target="_self">parse_url.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_58_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="photo_8php.html" target="_self">photo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_59_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2photos_8php.html" target="_self">photos.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_60_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="php_8php.html" target="_self">php.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_61_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="ping_8php.html" target="_self">ping.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_62_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poco_8php.html" target="_self">poco.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_63_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poke_8php.html" target="_self">poke.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_64_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="post_8php.html" target="_self">post.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_65_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="pretheme_8php.html" target="_self">pretheme.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_66_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="probe_8php.html" target="_self">probe.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_67_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile_8php.html" target="_self">profile.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_68_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__photo_8php.html" target="_self">profile_photo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_69_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profiles_8php.html" target="_self">profiles.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_70_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profperm_8php.html" target="_self">profperm.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_71_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="qsearch_8php.html" target="_self">qsearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_72_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="randprof_8php.html" target="_self">randprof.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_73_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="redir_8php.html" target="_self">redir.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_74_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="register_8php.html" target="_self">register.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_75_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="regmod_8php.html" target="_self">regmod.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_76_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="removeme_8php.html" target="_self">removeme.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_77_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="rmagic_8php.html" target="_self">rmagic.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_78_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="rsd__xml_8php.html" target="_self">rsd_xml.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_79_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="search_8php.html" target="_self">search.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_80_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="search__ac_8php.html" target="_self">search_ac.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_81_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="settings_8php.html" target="_self">settings.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_82_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="setup_8php.html" target="_self">setup.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_83_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="share_8php.html" target="_self">share.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_84_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="siteinfo_8php.html" target="_self">siteinfo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_85_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="sitelist_8php.html" target="_self">sitelist.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_86_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="smilies_8php.html" target="_self">smilies.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_87_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="starred_8php.html" target="_self">starred.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_88_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="subthread_8php.html" target="_self">subthread.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_89_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="suggest_8php.html" target="_self">suggest.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_90_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="tagger_8php.html" target="_self">tagger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_91_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="tagrm_8php.html" target="_self">tagrm.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_92_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="thing_8php.html" target="_self">thing.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_93_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="toggle__mobile_8php.html" target="_self">toggle_mobile.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_94_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="uexport_8php.html" target="_self">uexport.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_95_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__channel_8php.html" target="_self">update_channel.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_96_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__community_8php.html" target="_self">update_community.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_97_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__display_8php.html" target="_self">update_display.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_98_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__network_8php.html" target="_self">update_network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_99_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__search_8php.html" target="_self">update_search.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_100_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="view_8php.html" target="_self">view.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_101_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="viewconnections_8php.html" target="_self">viewconnections.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_102_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="viewsrc_8php.html" target="_self">viewsrc.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_103_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wall__attach_8php.html" target="_self">wall_attach.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_104_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wall__upload_8php.html" target="_self">wall_upload.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_105_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="webfinger_8php.html" target="_self">webfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_106_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="webpages_8php.html" target="_self">webpages.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_107_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wfinger_8php.html" target="_self">wfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_108_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="xchan_8php.html" target="_self">xchan.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_109_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="xrd_8php.html" target="_self">xrd.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_110_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zfinger_8php.html" target="_self">zfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_111_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zotfeed_8php.html" target="_self">zotfeed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2menu_8php.html" target="_self">menu.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2message_8php.html" target="_self">message.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_47_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mitem_8php.html" target="_self">mitem.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_48_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mood_8php.html" target="_self">mood.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_49_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="msearch_8php.html" target="_self">msearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_50_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2network_8php.html" target="_self">network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_51_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="new__channel_8php.html" target="_self">new_channel.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_52_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="nogroup_8php.html" target="_self">nogroup.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_53_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="notifications_8php.html" target="_self">notifications.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_54_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2notify_8php.html" target="_self">notify.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_55_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2oembed_8php.html" target="_self">oembed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_56_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="oexchange_8php.html" target="_self">oexchange.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_57_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="opensearch_8php.html" target="_self">opensearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_58_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="page_8php.html" target="_self">page.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_59_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="parse__url_8php.html" target="_self">parse_url.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_60_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="photo_8php.html" target="_self">photo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_61_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="mod_2photos_8php.html" target="_self">photos.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_62_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="php_8php.html" target="_self">php.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_63_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="ping_8php.html" target="_self">ping.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_64_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poco_8php.html" target="_self">poco.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_65_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="poke_8php.html" target="_self">poke.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_66_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="post_8php.html" target="_self">post.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_67_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="pretheme_8php.html" target="_self">pretheme.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_68_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="probe_8php.html" target="_self">probe.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_69_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile_8php.html" target="_self">profile.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_70_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profile__photo_8php.html" target="_self">profile_photo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_71_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profiles_8php.html" target="_self">profiles.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_72_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="profperm_8php.html" target="_self">profperm.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_73_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="qsearch_8php.html" target="_self">qsearch.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_74_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="randprof_8php.html" target="_self">randprof.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_75_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="redir_8php.html" target="_self">redir.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_76_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="register_8php.html" target="_self">register.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_77_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="regmod_8php.html" target="_self">regmod.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_78_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="removeme_8php.html" target="_self">removeme.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_79_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="rmagic_8php.html" target="_self">rmagic.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_80_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="rsd__xml_8php.html" target="_self">rsd_xml.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_81_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="search_8php.html" target="_self">search.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_82_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="search__ac_8php.html" target="_self">search_ac.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_83_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="settings_8php.html" target="_self">settings.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_84_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="setup_8php.html" target="_self">setup.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_85_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="share_8php.html" target="_self">share.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_86_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="siteinfo_8php.html" target="_self">siteinfo.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_87_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="sitelist_8php.html" target="_self">sitelist.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_88_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="smilies_8php.html" target="_self">smilies.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_89_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="starred_8php.html" target="_self">starred.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_90_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="subthread_8php.html" target="_self">subthread.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_91_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="suggest_8php.html" target="_self">suggest.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_92_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="tagger_8php.html" target="_self">tagger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_93_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="tagrm_8php.html" target="_self">tagrm.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_94_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="thing_8php.html" target="_self">thing.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_95_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="toggle__mobile_8php.html" target="_self">toggle_mobile.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_96_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="uexport_8php.html" target="_self">uexport.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_97_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__channel_8php.html" target="_self">update_channel.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_98_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__community_8php.html" target="_self">update_community.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_99_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__display_8php.html" target="_self">update_display.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_100_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__network_8php.html" target="_self">update_network.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_101_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="update__search_8php.html" target="_self">update_search.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_102_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="view_8php.html" target="_self">view.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_103_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="viewconnections_8php.html" target="_self">viewconnections.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_104_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="viewsrc_8php.html" target="_self">viewsrc.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_105_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wall__attach_8php.html" target="_self">wall_attach.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_106_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wall__upload_8php.html" target="_self">wall_upload.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_107_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="webfinger_8php.html" target="_self">webfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_108_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="webpages_8php.html" target="_self">webpages.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_109_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="wfinger_8php.html" target="_self">wfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_110_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="xchan_8php.html" target="_self">xchan.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_111_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="xrd_8php.html" target="_self">xrd.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_112_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zfinger_8php.html" target="_self">zfinger.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_113_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="zotfeed_8php.html" target="_self">zotfeed.php</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_2_" class="even"><td class="entry"><img id="arr_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('2_')"/><img id="img_2_" src="ftv2folderclosed.png" alt="+" width="24" height="22" onclick="toggleFolder('2_')"/><a class="el" href="dir_23ec12649285f9fabf3a6b7380226c28.html" target="_self">util</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_2_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_2_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('2_0_')"/><img id="img_2_0_" src="ftv2folderclosed.png" alt="+" width="24" height="22" onclick="toggleFolder('2_0_')"/><a class="el" href="dir_0eaa4a0adae8ba4811e133c6e594aeee.html" target="_self">fpostit</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_2_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="fpostit_8php.html" target="_self">fpostit.php</a></td><td class="desc"></td></tr>
|
||||
|
@ -207,6 +207,9 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');});
|
||||
<li>ACCOUNT_ROLE_ADMIN
|
||||
: <a class="el" href="boot_8php.html#ac8400313df2c831653f9036f71ebd86d">boot.php</a>
|
||||
</li>
|
||||
<li>ACCOUNT_ROLE_ALLOWCODE
|
||||
: <a class="el" href="boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688">boot.php</a>
|
||||
</li>
|
||||
<li>account_total()
|
||||
: <a class="el" href="account_8php.html#a43e3042b2723d76915a030bac3c668b6">account.php</a>
|
||||
</li>
|
||||
|
@ -224,6 +224,9 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
|
||||
<li>ITEM_BLOCKED
|
||||
: <a class="el" href="boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f">boot.php</a>
|
||||
</li>
|
||||
<li>ITEM_BUILDBLOCK
|
||||
: <a class="el" href="boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf">boot.php</a>
|
||||
</li>
|
||||
<li>item_content()
|
||||
: <a class="el" href="item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221">item.php</a>
|
||||
</li>
|
||||
@ -297,10 +300,10 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
|
||||
: <a class="el" href="boot_8php.html#a7af107fab8d62b9a73801713b774ed30">boot.php</a>
|
||||
</li>
|
||||
<li>item_store()
|
||||
: <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">items.php</a>
|
||||
: <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">items.php</a>
|
||||
</li>
|
||||
<li>item_store_update()
|
||||
: <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">items.php</a>
|
||||
: <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">items.php</a>
|
||||
</li>
|
||||
<li>ITEM_THREAD_TOP
|
||||
: <a class="el" href="boot_8php.html#a749144d8dd9c1366596a0213c277d050">boot.php</a>
|
||||
|
@ -198,6 +198,51 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');});
|
||||
<li>member_of()
|
||||
: <a class="el" href="include_2group_8php.html#a048f6892bfd28852de1b76470df411de">group.php</a>
|
||||
</li>
|
||||
<li>menu_add_item()
|
||||
: <a class="el" href="include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8">menu.php</a>
|
||||
</li>
|
||||
<li>menu_content()
|
||||
: <a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu.php</a>
|
||||
</li>
|
||||
<li>menu_create()
|
||||
: <a class="el" href="include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98">menu.php</a>
|
||||
</li>
|
||||
<li>menu_del_item()
|
||||
: <a class="el" href="include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a">menu.php</a>
|
||||
</li>
|
||||
<li>menu_delete()
|
||||
: <a class="el" href="include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8">menu.php</a>
|
||||
</li>
|
||||
<li>menu_delete_id()
|
||||
: <a class="el" href="include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804">menu.php</a>
|
||||
</li>
|
||||
<li>menu_edit()
|
||||
: <a class="el" href="include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571">menu.php</a>
|
||||
</li>
|
||||
<li>menu_edit_item()
|
||||
: <a class="el" href="include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa">menu.php</a>
|
||||
</li>
|
||||
<li>menu_fetch()
|
||||
: <a class="el" href="include_2menu_8php.html#a68ebbf492470c930f652013656f9071d">menu.php</a>
|
||||
</li>
|
||||
<li>menu_fetch_id()
|
||||
: <a class="el" href="include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7">menu.php</a>
|
||||
</li>
|
||||
<li>MENU_ITEM_NEWWIN
|
||||
: <a class="el" href="boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5">boot.php</a>
|
||||
</li>
|
||||
<li>MENU_ITEM_ZID
|
||||
: <a class="el" href="boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53">boot.php</a>
|
||||
</li>
|
||||
<li>menu_list()
|
||||
: <a class="el" href="include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b">menu.php</a>
|
||||
</li>
|
||||
<li>menu_post()
|
||||
: <a class="el" href="mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393">menu.php</a>
|
||||
</li>
|
||||
<li>menu_render()
|
||||
: <a class="el" href="include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e">menu.php</a>
|
||||
</li>
|
||||
<li>message_aside()
|
||||
: <a class="el" href="mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7">message.php</a>
|
||||
</li>
|
||||
@ -213,6 +258,15 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');});
|
||||
<li>mini_group_select()
|
||||
: <a class="el" href="include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f">group.php</a>
|
||||
</li>
|
||||
<li>mitem_content()
|
||||
: <a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem.php</a>
|
||||
</li>
|
||||
<li>mitem_init()
|
||||
: <a class="el" href="mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518">mitem.php</a>
|
||||
</li>
|
||||
<li>mitem_post()
|
||||
: <a class="el" href="mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1">mitem.php</a>
|
||||
</li>
|
||||
<li>mood_content()
|
||||
: <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood.php</a>
|
||||
</li>
|
||||
|
@ -173,6 +173,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
|
||||
<li>PAGE_REMOVED
|
||||
: <a class="el" href="boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6">boot.php</a>
|
||||
</li>
|
||||
<li>pagelist_widget()
|
||||
: <a class="el" href="page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0">page_widgets.php</a>
|
||||
</li>
|
||||
<li>paginate()
|
||||
: <a class="el" href="text_8php.html#afe9f178d264d44a94dc1292aaf0fd585">text.php</a>
|
||||
</li>
|
||||
|
@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
|
||||
<li>randprof_init()
|
||||
: <a class="el" href="randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090">randprof.php</a>
|
||||
</li>
|
||||
<li>rconnect_url()
|
||||
: <a class="el" href="Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91">Contact.php</a>
|
||||
</li>
|
||||
<li>rebuild_theme_table()
|
||||
: <a class="el" href="admin_8php.html#ae46311a3fefc21abc838a26e91789de6">admin.php</a>
|
||||
</li>
|
||||
|
@ -162,9 +162,6 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
|
||||
<li>webpages_content()
|
||||
: <a class="el" href="webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d">webpages.php</a>
|
||||
</li>
|
||||
<li>webpages_init()
|
||||
: <a class="el" href="webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7">webpages.php</a>
|
||||
</li>
|
||||
<li>wfinger_init()
|
||||
: <a class="el" href="wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3">wfinger.php</a>
|
||||
</li>
|
||||
@ -174,6 +171,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
|
||||
<li>while
|
||||
: <a class="el" href="docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d">docblox_errorchecker.php</a>
|
||||
</li>
|
||||
<li>writepages_widget()
|
||||
: <a class="el" href="page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f">page_widgets.php</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
@ -246,10 +246,10 @@ $(document).ready(function(){initNavTree('globals_func_0x69.html','');});
|
||||
: <a class="el" href="conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533">conversation.php</a>
|
||||
</li>
|
||||
<li>item_store()
|
||||
: <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">items.php</a>
|
||||
: <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">items.php</a>
|
||||
</li>
|
||||
<li>item_store_update()
|
||||
: <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">items.php</a>
|
||||
: <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">items.php</a>
|
||||
</li>
|
||||
<li>items_fetch()
|
||||
: <a class="el" href="items_8php.html#a756738301f2ed96be50232500677d58a">items.php</a>
|
||||
|
@ -173,6 +173,45 @@ $(document).ready(function(){initNavTree('globals_func_0x6d.html','');});
|
||||
<li>member_of()
|
||||
: <a class="el" href="include_2group_8php.html#a048f6892bfd28852de1b76470df411de">group.php</a>
|
||||
</li>
|
||||
<li>menu_add_item()
|
||||
: <a class="el" href="include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8">menu.php</a>
|
||||
</li>
|
||||
<li>menu_content()
|
||||
: <a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu.php</a>
|
||||
</li>
|
||||
<li>menu_create()
|
||||
: <a class="el" href="include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98">menu.php</a>
|
||||
</li>
|
||||
<li>menu_del_item()
|
||||
: <a class="el" href="include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a">menu.php</a>
|
||||
</li>
|
||||
<li>menu_delete()
|
||||
: <a class="el" href="include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8">menu.php</a>
|
||||
</li>
|
||||
<li>menu_delete_id()
|
||||
: <a class="el" href="include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804">menu.php</a>
|
||||
</li>
|
||||
<li>menu_edit()
|
||||
: <a class="el" href="include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571">menu.php</a>
|
||||
</li>
|
||||
<li>menu_edit_item()
|
||||
: <a class="el" href="include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa">menu.php</a>
|
||||
</li>
|
||||
<li>menu_fetch()
|
||||
: <a class="el" href="include_2menu_8php.html#a68ebbf492470c930f652013656f9071d">menu.php</a>
|
||||
</li>
|
||||
<li>menu_fetch_id()
|
||||
: <a class="el" href="include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7">menu.php</a>
|
||||
</li>
|
||||
<li>menu_list()
|
||||
: <a class="el" href="include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b">menu.php</a>
|
||||
</li>
|
||||
<li>menu_post()
|
||||
: <a class="el" href="mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393">menu.php</a>
|
||||
</li>
|
||||
<li>menu_render()
|
||||
: <a class="el" href="include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e">menu.php</a>
|
||||
</li>
|
||||
<li>message_aside()
|
||||
: <a class="el" href="mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7">message.php</a>
|
||||
</li>
|
||||
@ -188,6 +227,15 @@ $(document).ready(function(){initNavTree('globals_func_0x6d.html','');});
|
||||
<li>mini_group_select()
|
||||
: <a class="el" href="include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f">group.php</a>
|
||||
</li>
|
||||
<li>mitem_content()
|
||||
: <a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem.php</a>
|
||||
</li>
|
||||
<li>mitem_init()
|
||||
: <a class="el" href="mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518">mitem.php</a>
|
||||
</li>
|
||||
<li>mitem_post()
|
||||
: <a class="el" href="mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1">mitem.php</a>
|
||||
</li>
|
||||
<li>mood_content()
|
||||
: <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood.php</a>
|
||||
</li>
|
||||
|
@ -149,6 +149,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
|
||||
<li>page_init()
|
||||
: <a class="el" href="page_8php.html#a4d89800c0366a239191b1692c09635cf">page.php</a>
|
||||
</li>
|
||||
<li>pagelist_widget()
|
||||
: <a class="el" href="page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0">page_widgets.php</a>
|
||||
</li>
|
||||
<li>paginate()
|
||||
: <a class="el" href="text_8php.html#afe9f178d264d44a94dc1292aaf0fd585">text.php</a>
|
||||
</li>
|
||||
|
@ -152,6 +152,9 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
|
||||
<li>randprof_init()
|
||||
: <a class="el" href="randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090">randprof.php</a>
|
||||
</li>
|
||||
<li>rconnect_url()
|
||||
: <a class="el" href="Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91">Contact.php</a>
|
||||
</li>
|
||||
<li>rebuild_theme_table()
|
||||
: <a class="el" href="admin_8php.html#ae46311a3fefc21abc838a26e91789de6">admin.php</a>
|
||||
</li>
|
||||
@ -159,7 +162,7 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
|
||||
: <a class="el" href="items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b">items.php</a>
|
||||
</li>
|
||||
<li>redbasic_form()
|
||||
: <a class="el" href="view_2theme_2redbasic_2php_2config_8php.html#a29a6e1ef07465d1617d836b859b3b2b2">config.php</a>
|
||||
: <a class="el" href="view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e">config.php</a>
|
||||
</li>
|
||||
<li>redbasic_init()
|
||||
: <a class="el" href="redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b">theme.php</a>
|
||||
|
@ -161,15 +161,15 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
|
||||
<li>webpages_content()
|
||||
: <a class="el" href="webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d">webpages.php</a>
|
||||
</li>
|
||||
<li>webpages_init()
|
||||
: <a class="el" href="webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7">webpages.php</a>
|
||||
</li>
|
||||
<li>wfinger_init()
|
||||
: <a class="el" href="wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3">wfinger.php</a>
|
||||
</li>
|
||||
<li>what_next()
|
||||
: <a class="el" href="setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58">setup.php</a>
|
||||
</li>
|
||||
<li>writepages_widget()
|
||||
: <a class="el" href="page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f">page_widgets.php</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
@ -187,6 +187,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x61.html','');});
|
||||
<li>ACCOUNT_ROLE_ADMIN
|
||||
: <a class="el" href="boot_8php.html#ac8400313df2c831653f9036f71ebd86d">boot.php</a>
|
||||
</li>
|
||||
<li>ACCOUNT_ROLE_ALLOWCODE
|
||||
: <a class="el" href="boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688">boot.php</a>
|
||||
</li>
|
||||
<li>ACCOUNT_UNVERIFIED
|
||||
: <a class="el" href="boot_8php.html#af3a4271630aabd8be592213f925d6a36">boot.php</a>
|
||||
</li>
|
||||
|
@ -150,6 +150,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x69.html','');});
|
||||
<li>ITEM_BLOCKED
|
||||
: <a class="el" href="boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f">boot.php</a>
|
||||
</li>
|
||||
<li>ITEM_BUILDBLOCK
|
||||
: <a class="el" href="boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf">boot.php</a>
|
||||
</li>
|
||||
<li>ITEM_DELAYED_PUBLISH
|
||||
: <a class="el" href="boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20">boot.php</a>
|
||||
</li>
|
||||
|
@ -163,6 +163,12 @@ $(document).ready(function(){initNavTree('globals_vars_0x6d.html','');});
|
||||
<li>MAX_LIKERS
|
||||
: <a class="el" href="boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd">boot.php</a>
|
||||
</li>
|
||||
<li>MENU_ITEM_NEWWIN
|
||||
: <a class="el" href="boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5">boot.php</a>
|
||||
</li>
|
||||
<li>MENU_ITEM_ZID
|
||||
: <a class="el" href="boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53">boot.php</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
File diff suppressed because one or more lines are too long
431
doc/html/include_2menu_8php.html
Normal file
431
doc/html/include_2menu_8php.html
Normal file
@ -0,0 +1,431 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.3.1"/>
|
||||
<title>The Red Matrix: include/menu.php File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { searchBox.OnSelectItem(0); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectlogo"><img alt="Logo" src="rhash-64.png"/></td>
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">The Red Matrix
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.3.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="annotated.html"><span>Classes</span></a></li>
|
||||
<li class="current"><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>File Members</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('include_2menu_8php.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Pages</a></div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">menu.php File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a68ebbf492470c930f652013656f9071d"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a68ebbf492470c930f652013656f9071d">menu_fetch</a> ($name, $uid, $observer_xchan)</td></tr>
|
||||
<tr class="separator:a68ebbf492470c930f652013656f9071d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a890cc6237971e15f15702e6b2e88502e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e">menu_render</a> ($menu)</td></tr>
|
||||
<tr class="separator:a890cc6237971e15f15702e6b2e88502e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a47447c01ba8ea04cd74af1d4c5b68fc7"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7">menu_fetch_id</a> ($menu_id, $channel_id)</td></tr>
|
||||
<tr class="separator:a47447c01ba8ea04cd74af1d4c5b68fc7"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a08a800821721781a8dfffbe31481ff98"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98">menu_create</a> ($arr)</td></tr>
|
||||
<tr class="separator:a08a800821721781a8dfffbe31481ff98"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:acef15a498d52666b1c7e5c12765c689b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b">menu_list</a> ($channel_id)</td></tr>
|
||||
<tr class="separator:acef15a498d52666b1c7e5c12765c689b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a6a33c6a3db2a7510b16cc656edaec571"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571">menu_edit</a> ($arr)</td></tr>
|
||||
<tr class="separator:a6a33c6a3db2a7510b16cc656edaec571"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a3884bda4d85d84ec99447db9403a68d8"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8">menu_delete</a> ($menu_name, $uid)</td></tr>
|
||||
<tr class="separator:a3884bda4d85d84ec99447db9403a68d8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ad87f51ce85172bcc3f931aa0cd96a804"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804">menu_delete_id</a> ($menu_id, $uid)</td></tr>
|
||||
<tr class="separator:ad87f51ce85172bcc3f931aa0cd96a804"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:add35fae5e9695031b3d46e30ac409eb8"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8">menu_add_item</a> ($menu_id, $uid, $arr)</td></tr>
|
||||
<tr class="separator:add35fae5e9695031b3d46e30ac409eb8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:acb66f80ca895a6ccd562b3d9ae7b41aa"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa">menu_edit_item</a> ($menu_id, $uid, $arr)</td></tr>
|
||||
<tr class="separator:acb66f80ca895a6ccd562b3d9ae7b41aa"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a9aa8e0052dd47c1a93f53a983bd4620a"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a">menu_del_item</a> ($menu_id, $uid, $item_id)</td></tr>
|
||||
<tr class="separator:a9aa8e0052dd47c1a93f53a983bd4620a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<h2 class="groupheader">Function Documentation</h2>
|
||||
<a class="anchor" id="add35fae5e9695031b3d46e30ac409eb8"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_add_item </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$arr</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1">mitem_post()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a08a800821721781a8dfffbe31481ff98"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_create </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$arr</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393">menu_post()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a9aa8e0052dd47c1a93f53a983bd4620a"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_del_item </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$item_id</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem_content()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a3884bda4d85d84ec99447db9403a68d8"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_delete </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_name</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="ad87f51ce85172bcc3f931aa0cd96a804"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_delete_id </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu_content()</a>, and <a class="el" href="include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8">menu_delete()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a6a33c6a3db2a7510b16cc656edaec571"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_edit </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$arr</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393">menu_post()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="acb66f80ca895a6ccd562b3d9ae7b41aa"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_edit_item </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$arr</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1">mitem_post()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a68ebbf492470c930f652013656f9071d"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_fetch </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$name</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$uid</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$observer_xchan</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem_content()</a>, and <a class="el" href="boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b">profile_sidebar()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a47447c01ba8ea04cd74af1d4c5b68fc7"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_fetch_id </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu_id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$channel_id</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu_content()</a>, and <a class="el" href="mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518">mitem_init()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="acef15a498d52666b1c7e5c12765c689b"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_list </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$channel_id</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu_content()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a890cc6237971e15f15702e6b2e88502e"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_render </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$menu</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem_content()</a>, and <a class="el" href="boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b">profile_sidebar()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
14
doc/html/include_2menu_8php.js
Normal file
14
doc/html/include_2menu_8php.js
Normal file
@ -0,0 +1,14 @@
|
||||
var include_2menu_8php =
|
||||
[
|
||||
[ "menu_add_item", "include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8", null ],
|
||||
[ "menu_create", "include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98", null ],
|
||||
[ "menu_del_item", "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a", null ],
|
||||
[ "menu_delete", "include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8", null ],
|
||||
[ "menu_delete_id", "include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804", null ],
|
||||
[ "menu_edit", "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571", null ],
|
||||
[ "menu_edit_item", "include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa", null ],
|
||||
[ "menu_fetch", "include_2menu_8php.html#a68ebbf492470c930f652013656f9071d", null ],
|
||||
[ "menu_fetch_id", "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7", null ],
|
||||
[ "menu_list", "include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b", null ],
|
||||
[ "menu_render", "include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e", null ]
|
||||
];
|
@ -333,7 +333,7 @@ Functions</h2></td></tr>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store()</a> instead of this function. </p>
|
||||
<p>This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store()</a> instead of this function. </p>
|
||||
<p>Is this a reply to something?</p>
|
||||
<p>fix naked links by passing through a callback to see if this is a red site (already known to us) which will get a zrl, otherwise link with url</p>
|
||||
<p>When a photo was uploaded into the message using the (profile wall) ajax uploader, The permissions are initially set to disallow anybody but the owner from seeing it. This is because the permissions may not yet have been set for the post. If it's private, the photo permissions should be set appropriately. But we didn't know the final permissions on the post until now. So now we'll look for links of uploaded messages that are in the post and set them to the same permissions as the post itself.</p>
|
||||
|
@ -166,10 +166,10 @@ Functions</h2></td></tr>
|
||||
<tr class="separator:a896c1809d58f2d7a42cfe14577958ddf"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aa723c0571e314a1853a24c5854b4f54f"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#aa723c0571e314a1853a24c5854b4f54f">encode_rel_links</a> ($links)</td></tr>
|
||||
<tr class="separator:aa723c0571e314a1853a24c5854b4f54f"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a8ef003b2bc2dc4816bdcf5800aec1049"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store</a> ($arr, $force_parent=false)</td></tr>
|
||||
<tr class="separator:a8ef003b2bc2dc4816bdcf5800aec1049"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a2dc4fb9347f6fb804da4f32c107afb53"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update</a> ($arr, $force_parent=false)</td></tr>
|
||||
<tr class="separator:a2dc4fb9347f6fb804da4f32c107afb53"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a2541e6861a56d145c9281877cc501615"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store</a> ($arr, $allow_exec=false)</td></tr>
|
||||
<tr class="separator:a2541e6861a56d145c9281877cc501615"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:acf0bf7c9d21ac84f32effb754f7ad484"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update</a> ($arr, $allow_exec=false)</td></tr>
|
||||
<tr class="separator:acf0bf7c9d21ac84f32effb754f7ad484"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aab9e0c58247427126de0699c729c3b6c"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#aab9e0c58247427126de0699c729c3b6c">send_status_notifications</a> ($post_id, $item)</td></tr>
|
||||
<tr class="separator:aab9e0c58247427126de0699c729c3b6c"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aab9c6bae4c40799867596bdaae9829fd"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="items_8php.html#aab9c6bae4c40799867596bdaae9829fd">get_item_contact</a> ($item, $contacts)</td></tr>
|
||||
@ -236,7 +236,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361">get_item_elements()</a>, <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store()</a>, and <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361">get_item_elements()</a>, <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store()</a>, and <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -832,7 +832,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, <a class="el" href="events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec">events_content()</a>, <a class="el" href="items_8php.html#a756738301f2ed96be50232500677d58a">items_fetch()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4">network_content()</a>, <a class="el" href="notifier_8php.html#a568c502f626cff95e344c0748938b85d">notifier_run()</a>, <a class="el" href="page_8php.html#a91a5f649f68406149108bded1dc90b22">page_content()</a>, <a class="el" href="search_8php.html#ab2568591359edde5b483a6cd9a24b2cc">search_content()</a>, <a class="el" href="items_8php.html#ab1bce4261bcf75ad62753b498a144d17">tag_deliver()</a>, and <a class="el" href="items_8php.html#a004e89d86b0f29b2c4da20108ecc4091">zot_feed()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0">display_content()</a>, <a class="el" href="events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec">events_content()</a>, <a class="el" href="items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc">item_expire()</a>, <a class="el" href="items_8php.html#a756738301f2ed96be50232500677d58a">items_fetch()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4">network_content()</a>, <a class="el" href="notifier_8php.html#a568c502f626cff95e344c0748938b85d">notifier_run()</a>, <a class="el" href="page_8php.html#a91a5f649f68406149108bded1dc90b22">page_content()</a>, <a class="el" href="search_8php.html#ab2568591359edde5b483a6cd9a24b2cc">search_content()</a>, <a class="el" href="items_8php.html#ab1bce4261bcf75ad62753b498a144d17">tag_deliver()</a>, and <a class="el" href="items_8php.html#a004e89d86b0f29b2c4da20108ecc4091">zot_feed()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -1171,7 +1171,7 @@ Functions</h2></td></tr>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a8ef003b2bc2dc4816bdcf5800aec1049"></a>
|
||||
<a class="anchor" id="a2541e6861a56d145c9281877cc501615"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@ -1185,7 +1185,7 @@ Functions</h2></td></tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$force_parent</em> = <code>false</code> </td>
|
||||
<td class="paramname"><em>$allow_exec</em> = <code>false</code> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -1199,7 +1199,7 @@ Functions</h2></td></tr>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a2dc4fb9347f6fb804da4f32c107afb53"></a>
|
||||
<a class="anchor" id="acf0bf7c9d21ac84f32effb754f7ad484"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@ -1213,7 +1213,7 @@ Functions</h2></td></tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$force_parent</em> = <code>false</code> </td>
|
||||
<td class="paramname"><em>$allow_exec</em> = <code>false</code> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -1457,7 +1457,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store()</a>, and <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store()</a>, and <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -1485,7 +1485,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049">item_store()</a>, and <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="items_8php.html#a2541e6861a56d145c9281877cc501615">item_store()</a>, and <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -38,8 +38,8 @@ var items_8php =
|
||||
[ "item_expire", "items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc", null ],
|
||||
[ "item_getfeedattach", "items_8php.html#a09d425596b9f8663472cf7474ad36d96", null ],
|
||||
[ "item_getfeedtags", "items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7", null ],
|
||||
[ "item_store", "items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049", null ],
|
||||
[ "item_store_update", "items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53", null ],
|
||||
[ "item_store", "items_8php.html#a2541e6861a56d145c9281877cc501615", null ],
|
||||
[ "item_store_update", "items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484", null ],
|
||||
[ "items_fetch", "items_8php.html#a756738301f2ed96be50232500677d58a", null ],
|
||||
[ "limit_body_size", "items_8php.html#af94c281016c6c912d06e064113336c5c", null ],
|
||||
[ "mail_store", "items_8php.html#a77da7ce9a117601d49ac4a67c71b514f", null ],
|
||||
|
File diff suppressed because one or more lines are too long
173
doc/html/mitem_8php.html
Normal file
173
doc/html/mitem_8php.html
Normal file
@ -0,0 +1,173 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.3.1"/>
|
||||
<title>The Red Matrix: mod/mitem.php File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { searchBox.OnSelectItem(0); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectlogo"><img alt="Logo" src="rhash-64.png"/></td>
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">The Red Matrix
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.3.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="annotated.html"><span>Classes</span></a></li>
|
||||
<li class="current"><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>File Members</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('mitem_8php.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Pages</a></div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">mitem.php File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a9627cd857cafdf04e4fc0ae48c8e8518"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518">mitem_init</a> (&$a)</td></tr>
|
||||
<tr class="separator:a9627cd857cafdf04e4fc0ae48c8e8518"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a6ee694cca4b551a20d7c7a94b5243ec1"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1">mitem_post</a> (&$a)</td></tr>
|
||||
<tr class="separator:a6ee694cca4b551a20d7c7a94b5243ec1"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a7a31b702ecad18eeb6a38b243ff0037e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e">mitem_content</a> (&$a)</td></tr>
|
||||
<tr class="separator:a7a31b702ecad18eeb6a38b243ff0037e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<h2 class="groupheader">Function Documentation</h2>
|
||||
<a class="anchor" id="a7a31b702ecad18eeb6a38b243ff0037e"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">mitem_content </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a9627cd857cafdf04e4fc0ae48c8e8518"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">mitem_init </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a6ee694cca4b551a20d7c7a94b5243ec1"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">mitem_post </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
6
doc/html/mitem_8php.js
Normal file
6
doc/html/mitem_8php.js
Normal file
@ -0,0 +1,6 @@
|
||||
var mitem_8php =
|
||||
[
|
||||
[ "mitem_content", "mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e", null ],
|
||||
[ "mitem_init", "mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518", null ],
|
||||
[ "mitem_post", "mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1", null ]
|
||||
];
|
155
doc/html/mod_2menu_8php.html
Normal file
155
doc/html/mod_2menu_8php.html
Normal file
@ -0,0 +1,155 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.3.1"/>
|
||||
<title>The Red Matrix: mod/menu.php File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { searchBox.OnSelectItem(0); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectlogo"><img alt="Logo" src="rhash-64.png"/></td>
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">The Red Matrix
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.3.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="annotated.html"><span>Classes</span></a></li>
|
||||
<li class="current"><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>File Members</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('mod_2menu_8php.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Pages</a></div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">menu.php File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:aaa491ef173868fe002aece4632bcf393"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393">menu_post</a> (&$a)</td></tr>
|
||||
<tr class="separator:aaa491ef173868fe002aece4632bcf393"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a6fed23af14d71a78a4153c8363a685cf"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf">menu_content</a> (&$a)</td></tr>
|
||||
<tr class="separator:a6fed23af14d71a78a4153c8363a685cf"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<h2 class="groupheader">Function Documentation</h2>
|
||||
<a class="anchor" id="a6fed23af14d71a78a4153c8363a685cf"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_content </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="aaa491ef173868fe002aece4632bcf393"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">menu_post </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
5
doc/html/mod_2menu_8php.js
Normal file
5
doc/html/mod_2menu_8php.js
Normal file
@ -0,0 +1,5 @@
|
||||
var mod_2menu_8php =
|
||||
[
|
||||
[ "menu_content", "mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf", null ],
|
||||
[ "menu_post", "mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393", null ]
|
||||
];
|
@ -36,13 +36,13 @@ var NAVTREE =
|
||||
var NAVTREEINDEX =
|
||||
[
|
||||
"BaseObject_8php.html",
|
||||
"boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec",
|
||||
"classItem.html#a904421c7a427411bb2ab473bca872f63",
|
||||
"dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a",
|
||||
"include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3",
|
||||
"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae",
|
||||
"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f",
|
||||
"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab"
|
||||
"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6",
|
||||
"classItem.html#a632185dd25c5caf277067c76230a4320",
|
||||
"dir_55dbaf9b7b53c4fc605c9011743a7353.html",
|
||||
"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d",
|
||||
"mod_2directory_8php.html",
|
||||
"removeme_8php.html",
|
||||
"wall__upload_8php.html"
|
||||
];
|
||||
|
||||
var SYNCONMSG = 'click to disable panel synchronisation';
|
||||
|
@ -5,22 +5,23 @@ var NAVTREEINDEX0 =
|
||||
"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[5,0,0,15,2],
|
||||
"Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc":[5,0,0,15,9],
|
||||
"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[5,0,0,15,8],
|
||||
"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,15,13],
|
||||
"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,15,12],
|
||||
"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[5,0,0,15,11],
|
||||
"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,15,14],
|
||||
"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,15,13],
|
||||
"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[5,0,0,15,6],
|
||||
"Contact_8php.html#a3eef54a5523e568a28257c1f9b1644d8":[5,0,0,15,3],
|
||||
"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[5,0,0,15,5],
|
||||
"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,15,14],
|
||||
"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,15,15],
|
||||
"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[5,0,0,15,7],
|
||||
"Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c":[5,0,0,15,10],
|
||||
"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,15,11],
|
||||
"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,15,12],
|
||||
"Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa":[5,0,0,15,4],
|
||||
"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[5,0,0,15,1],
|
||||
"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[5,0,0,15,0],
|
||||
"ConversationObject_8php.html":[5,0,0,19],
|
||||
"ITemplateEngine_8php.html":[5,0,0,38],
|
||||
"ItemObject_8php.html":[5,0,0,37],
|
||||
"ProtoDriver_8php.html":[5,0,0,55],
|
||||
"ProtoDriver_8php.html":[5,0,0,57],
|
||||
"__well__known_8php.html":[5,0,1,0],
|
||||
"__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0":[5,0,1,0,0],
|
||||
"account_8php.html":[5,0,0,2],
|
||||
@ -87,167 +88,166 @@ var NAVTREEINDEX0 =
|
||||
"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,10,5],
|
||||
"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,10,2],
|
||||
"boot_8php.html":[5,0,4],
|
||||
"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,129],
|
||||
"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,131],
|
||||
"boot_8php.html#a01353c9abebc3544ea080ac161729632":[5,0,4,42],
|
||||
"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,142],
|
||||
"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,227],
|
||||
"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,144],
|
||||
"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,231],
|
||||
"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[5,0,4,60],
|
||||
"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,156],
|
||||
"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,160],
|
||||
"boot_8php.html#a0450389f24c632906fbc24347700a543":[5,0,4,53],
|
||||
"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,107],
|
||||
"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,108],
|
||||
"boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[5,0,4,1],
|
||||
"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,194],
|
||||
"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,72],
|
||||
"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,160],
|
||||
"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,243],
|
||||
"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,239],
|
||||
"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,242],
|
||||
"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,198],
|
||||
"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,73],
|
||||
"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,164],
|
||||
"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,247],
|
||||
"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,243],
|
||||
"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,246],
|
||||
"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,25],
|
||||
"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,64],
|
||||
"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,65],
|
||||
"boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15],
|
||||
"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[5,0,4,82],
|
||||
"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[5,0,4,86],
|
||||
"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[5,0,4,83],
|
||||
"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,186],
|
||||
"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[5,0,4,67],
|
||||
"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,141],
|
||||
"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,137],
|
||||
"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,159],
|
||||
"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,246],
|
||||
"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,247],
|
||||
"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,163],
|
||||
"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,81],
|
||||
"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,204],
|
||||
"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[5,0,4,83],
|
||||
"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[5,0,4,87],
|
||||
"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[5,0,4,84],
|
||||
"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,190],
|
||||
"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[5,0,4,68],
|
||||
"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,143],
|
||||
"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,139],
|
||||
"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,163],
|
||||
"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,250],
|
||||
"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,251],
|
||||
"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,167],
|
||||
"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,82],
|
||||
"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,208],
|
||||
"boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,4,38],
|
||||
"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,109],
|
||||
"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,148],
|
||||
"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,179],
|
||||
"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,223],
|
||||
"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,110],
|
||||
"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,150],
|
||||
"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,183],
|
||||
"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,227],
|
||||
"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[5,0,4,48],
|
||||
"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[5,0,4,24],
|
||||
"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,105],
|
||||
"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,97],
|
||||
"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,232],
|
||||
"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,182],
|
||||
"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,88],
|
||||
"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,124],
|
||||
"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,202],
|
||||
"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,110],
|
||||
"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,178],
|
||||
"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,122],
|
||||
"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,73],
|
||||
"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,78],
|
||||
"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,209],
|
||||
"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,135],
|
||||
"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,106],
|
||||
"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,98],
|
||||
"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,236],
|
||||
"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,186],
|
||||
"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,89],
|
||||
"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,126],
|
||||
"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,206],
|
||||
"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,111],
|
||||
"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,182],
|
||||
"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,124],
|
||||
"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,74],
|
||||
"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,79],
|
||||
"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,213],
|
||||
"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,137],
|
||||
"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[5,0,4,50],
|
||||
"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,115],
|
||||
"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,150],
|
||||
"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,249],
|
||||
"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,167],
|
||||
"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,111],
|
||||
"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,248],
|
||||
"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,200],
|
||||
"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,117],
|
||||
"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,152],
|
||||
"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,253],
|
||||
"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,171],
|
||||
"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,112],
|
||||
"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,252],
|
||||
"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,204],
|
||||
"boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12],
|
||||
"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,65],
|
||||
"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,95],
|
||||
"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,66],
|
||||
"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,96],
|
||||
"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[5,0,4,58],
|
||||
"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,125],
|
||||
"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,196],
|
||||
"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,177],
|
||||
"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,94],
|
||||
"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,153],
|
||||
"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,145],
|
||||
"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,76],
|
||||
"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,240],
|
||||
"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,127],
|
||||
"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,200],
|
||||
"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,181],
|
||||
"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,95],
|
||||
"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,157],
|
||||
"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,147],
|
||||
"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,77],
|
||||
"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,244],
|
||||
"boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,4,36],
|
||||
"boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,4,19],
|
||||
"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,165],
|
||||
"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,108],
|
||||
"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,217],
|
||||
"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,164],
|
||||
"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,169],
|
||||
"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,109],
|
||||
"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,221],
|
||||
"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,168],
|
||||
"boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[5,0,4,6],
|
||||
"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,195],
|
||||
"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,213],
|
||||
"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,189],
|
||||
"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,149],
|
||||
"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,199],
|
||||
"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,217],
|
||||
"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,193],
|
||||
"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,151],
|
||||
"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[5,0,4,49],
|
||||
"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,87],
|
||||
"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,88],
|
||||
"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,39],
|
||||
"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,181],
|
||||
"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,212],
|
||||
"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,185],
|
||||
"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,216],
|
||||
"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,23],
|
||||
"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,66],
|
||||
"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,171],
|
||||
"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,67],
|
||||
"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,175],
|
||||
"boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67":[5,0,4,35],
|
||||
"boot_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,4,46],
|
||||
"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,192],
|
||||
"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,84],
|
||||
"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,151],
|
||||
"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,193],
|
||||
"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,196],
|
||||
"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,85],
|
||||
"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,155],
|
||||
"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,197],
|
||||
"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[5,0,4,21],
|
||||
"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,80],
|
||||
"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,81],
|
||||
"boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b":[5,0,4,37],
|
||||
"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,236],
|
||||
"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,157],
|
||||
"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,133],
|
||||
"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,240],
|
||||
"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,161],
|
||||
"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,135],
|
||||
"boot_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,4,47],
|
||||
"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,136],
|
||||
"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,138],
|
||||
"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[5,0,4,52],
|
||||
"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,139],
|
||||
"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,225],
|
||||
"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,216],
|
||||
"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,210],
|
||||
"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,106],
|
||||
"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,98],
|
||||
"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,198],
|
||||
"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,224],
|
||||
"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,141],
|
||||
"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,229],
|
||||
"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,220],
|
||||
"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,214],
|
||||
"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,107],
|
||||
"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,99],
|
||||
"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,202],
|
||||
"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,228],
|
||||
"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,30],
|
||||
"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,172],
|
||||
"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,127],
|
||||
"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,77],
|
||||
"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,176],
|
||||
"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,129],
|
||||
"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,78],
|
||||
"boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2],
|
||||
"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,244],
|
||||
"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,248],
|
||||
"boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4],
|
||||
"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,79],
|
||||
"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,92],
|
||||
"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,219],
|
||||
"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,70],
|
||||
"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,126],
|
||||
"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,152],
|
||||
"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,74],
|
||||
"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,154],
|
||||
"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,80],
|
||||
"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,93],
|
||||
"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,223],
|
||||
"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,71],
|
||||
"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,128],
|
||||
"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,156],
|
||||
"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,75],
|
||||
"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,158],
|
||||
"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[5,0,4,56],
|
||||
"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,89],
|
||||
"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,190],
|
||||
"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,90],
|
||||
"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[5,0,4,115],
|
||||
"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,194],
|
||||
"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[5,0,4,59],
|
||||
"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,120],
|
||||
"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,235],
|
||||
"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,234],
|
||||
"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,170],
|
||||
"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,103],
|
||||
"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,214],
|
||||
"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,123],
|
||||
"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,117],
|
||||
"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,221],
|
||||
"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[5,0,4,63],
|
||||
"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,122],
|
||||
"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,239],
|
||||
"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,238],
|
||||
"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,174],
|
||||
"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,104],
|
||||
"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,218],
|
||||
"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,125],
|
||||
"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,119],
|
||||
"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,225],
|
||||
"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,33],
|
||||
"boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11],
|
||||
"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,140],
|
||||
"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,121],
|
||||
"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,119],
|
||||
"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,222],
|
||||
"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,142],
|
||||
"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,123],
|
||||
"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,121],
|
||||
"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,226],
|
||||
"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,18],
|
||||
"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,184],
|
||||
"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,215],
|
||||
"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,188],
|
||||
"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,219],
|
||||
"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[5,0,4,55],
|
||||
"boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5],
|
||||
"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,207],
|
||||
"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,185],
|
||||
"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,237],
|
||||
"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,206],
|
||||
"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,173],
|
||||
"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,211],
|
||||
"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,189],
|
||||
"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,241],
|
||||
"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,210],
|
||||
"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,177],
|
||||
"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,28],
|
||||
"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,191],
|
||||
"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51],
|
||||
"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,147],
|
||||
"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9]
|
||||
"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,195]
|
||||
};
|
||||
|
@ -1,91 +1,96 @@
|
||||
var NAVTREEINDEX1 =
|
||||
{
|
||||
"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51],
|
||||
"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,149],
|
||||
"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9],
|
||||
"boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[5,0,4,20],
|
||||
"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[5,0,4,144],
|
||||
"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,91],
|
||||
"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,100],
|
||||
"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,211],
|
||||
"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,131],
|
||||
"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[5,0,4,146],
|
||||
"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,92],
|
||||
"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,101],
|
||||
"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,215],
|
||||
"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,133],
|
||||
"boot_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,4,22],
|
||||
"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,71],
|
||||
"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,176],
|
||||
"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,113],
|
||||
"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,197],
|
||||
"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,72],
|
||||
"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,180],
|
||||
"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,114],
|
||||
"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,201],
|
||||
"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[5,0,4,34],
|
||||
"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,218],
|
||||
"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,169],
|
||||
"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,201],
|
||||
"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,112],
|
||||
"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,132],
|
||||
"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,222],
|
||||
"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,173],
|
||||
"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,205],
|
||||
"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,113],
|
||||
"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,134],
|
||||
"boot_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,4,43],
|
||||
"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[5,0,4,61],
|
||||
"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,187],
|
||||
"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,191],
|
||||
"boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[5,0,4,7],
|
||||
"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,102],
|
||||
"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,103],
|
||||
"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,44],
|
||||
"boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3],
|
||||
"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,241],
|
||||
"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,69],
|
||||
"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,101],
|
||||
"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,118],
|
||||
"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,245],
|
||||
"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,70],
|
||||
"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,102],
|
||||
"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,120],
|
||||
"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[5,0,4,27],
|
||||
"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,155],
|
||||
"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,220],
|
||||
"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,99],
|
||||
"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,159],
|
||||
"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,224],
|
||||
"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,100],
|
||||
"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,41],
|
||||
"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,62],
|
||||
"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,245],
|
||||
"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,114],
|
||||
"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,116],
|
||||
"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,183],
|
||||
"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,249],
|
||||
"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,116],
|
||||
"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,118],
|
||||
"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,187],
|
||||
"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[5,0,4,40],
|
||||
"boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13],
|
||||
"boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8],
|
||||
"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,158],
|
||||
"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,208],
|
||||
"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,68],
|
||||
"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,143],
|
||||
"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,162],
|
||||
"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,212],
|
||||
"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,69],
|
||||
"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,145],
|
||||
"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,153],
|
||||
"boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[5,0,4,10],
|
||||
"boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[5,0,4,16],
|
||||
"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,75],
|
||||
"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,90],
|
||||
"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,76],
|
||||
"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,91],
|
||||
"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[5,0,4,31],
|
||||
"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,203],
|
||||
"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,226],
|
||||
"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,96],
|
||||
"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,128],
|
||||
"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,229],
|
||||
"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,207],
|
||||
"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,230],
|
||||
"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,97],
|
||||
"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,130],
|
||||
"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,233],
|
||||
"boot_8php.html#add517a0958ac684792c62142a3877f81":[5,0,4,45],
|
||||
"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[5,0,4,26],
|
||||
"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,233],
|
||||
"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,237],
|
||||
"boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,4,17],
|
||||
"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,166],
|
||||
"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,146],
|
||||
"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,174],
|
||||
"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,170],
|
||||
"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,148],
|
||||
"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,178],
|
||||
"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,29],
|
||||
"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,238],
|
||||
"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,205],
|
||||
"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,104],
|
||||
"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,161],
|
||||
"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,175],
|
||||
"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,130],
|
||||
"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,242],
|
||||
"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,209],
|
||||
"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,154],
|
||||
"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,105],
|
||||
"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,165],
|
||||
"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,179],
|
||||
"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,132],
|
||||
"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[5,0,4,32],
|
||||
"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,230],
|
||||
"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,168],
|
||||
"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,63],
|
||||
"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,234],
|
||||
"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,172],
|
||||
"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,64],
|
||||
"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[5,0,4,57],
|
||||
"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,134],
|
||||
"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,188],
|
||||
"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,93],
|
||||
"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,228],
|
||||
"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,180],
|
||||
"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,162],
|
||||
"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,231],
|
||||
"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,136],
|
||||
"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,192],
|
||||
"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,94],
|
||||
"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,232],
|
||||
"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,184],
|
||||
"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,166],
|
||||
"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,235],
|
||||
"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[5,0,4,54],
|
||||
"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,85],
|
||||
"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,138],
|
||||
"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,86],
|
||||
"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,140],
|
||||
"boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14],
|
||||
"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,199],
|
||||
"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,203],
|
||||
"cache_8php.html":[5,0,0,11],
|
||||
"channel_8php.html":[5,0,1,7],
|
||||
"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,7,1],
|
||||
@ -244,10 +249,5 @@ var NAVTREEINDEX1 =
|
||||
"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[4,0,17,19],
|
||||
"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[4,0,17,36],
|
||||
"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,39],
|
||||
"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41],
|
||||
"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4],
|
||||
"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12],
|
||||
"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37],
|
||||
"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,28],
|
||||
"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[4,0,17,1]
|
||||
"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41]
|
||||
};
|
||||
|
@ -1,5 +1,10 @@
|
||||
var NAVTREEINDEX2 =
|
||||
{
|
||||
"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4],
|
||||
"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12],
|
||||
"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37],
|
||||
"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,28],
|
||||
"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[4,0,17,1],
|
||||
"classItem.html#a904421c7a427411bb2ab473bca872f63":[4,0,17,7],
|
||||
"classItem.html#a90743c8348b13213275c223bb9333aa0":[4,0,17,29],
|
||||
"classItem.html#a9594df6014b0b6f45364ea7a34510130":[4,0,17,32],
|
||||
@ -244,10 +249,5 @@ var NAVTREEINDEX2 =
|
||||
"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,0,0],
|
||||
"dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0],
|
||||
"dir_21bc5169ff11430004758be31dcfc6c4.html":[5,0,0,0],
|
||||
"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2],
|
||||
"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[5,0,3,1,0],
|
||||
"dir_6b44a0e797e2f12381093380e3e54763.html":[5,0,3,1,1,0],
|
||||
"dir_817f6d302394b98e59575acdb59998bc.html":[5,0,3,0],
|
||||
"dir_8543001e5d25368a6edede3e63efb554.html":[5,0,3,1],
|
||||
"dir__fns_8php.html":[5,0,0,24]
|
||||
"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2]
|
||||
};
|
||||
|
@ -1,5 +1,10 @@
|
||||
var NAVTREEINDEX3 =
|
||||
{
|
||||
"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[5,0,3,1,0],
|
||||
"dir_6b44a0e797e2f12381093380e3e54763.html":[5,0,3,1,1,0],
|
||||
"dir_817f6d302394b98e59575acdb59998bc.html":[5,0,3,0],
|
||||
"dir_8543001e5d25368a6edede3e63efb554.html":[5,0,3,1],
|
||||
"dir__fns_8php.html":[5,0,0,24],
|
||||
"dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a":[5,0,0,24,2],
|
||||
"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[5,0,0,24,0],
|
||||
"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[5,0,0,24,1],
|
||||
@ -167,8 +172,8 @@ var NAVTREEINDEX3 =
|
||||
"globals_func_0x77.html":[5,1,1,23],
|
||||
"globals_func_0x78.html":[5,1,1,24],
|
||||
"globals_func_0x7a.html":[5,1,1,25],
|
||||
"globals_vars.html":[5,1,2],
|
||||
"globals_vars.html":[5,1,2,0],
|
||||
"globals_vars.html":[5,1,2],
|
||||
"globals_vars_0x61.html":[5,1,2,1],
|
||||
"globals_vars_0x63.html":[5,1,2,2],
|
||||
"globals_vars_0x64.html":[5,1,2,3],
|
||||
@ -244,10 +249,5 @@ var NAVTREEINDEX3 =
|
||||
"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[5,0,0,5,31],
|
||||
"include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[5,0,0,5,6],
|
||||
"include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[5,0,0,5,9],
|
||||
"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2],
|
||||
"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[5,0,0,5,46],
|
||||
"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[5,0,0,5,39],
|
||||
"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[5,0,0,5,10],
|
||||
"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[5,0,0,5,8],
|
||||
"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[5,0,0,5,34]
|
||||
"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2]
|
||||
};
|
||||
|
@ -1,5 +1,10 @@
|
||||
var NAVTREEINDEX4 =
|
||||
{
|
||||
"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[5,0,0,5,46],
|
||||
"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[5,0,0,5,39],
|
||||
"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[5,0,0,5,10],
|
||||
"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[5,0,0,5,8],
|
||||
"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[5,0,0,5,34],
|
||||
"include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3":[5,0,0,5,28],
|
||||
"include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa":[5,0,0,5,23],
|
||||
"include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1":[5,0,0,5,25],
|
||||
@ -65,59 +70,71 @@ var NAVTREEINDEX4 =
|
||||
"include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f":[5,0,0,33,11],
|
||||
"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[5,0,0,33,3],
|
||||
"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[5,0,0,33,9],
|
||||
"include_2message_8php.html":[5,0,0,41],
|
||||
"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,41,2],
|
||||
"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,41,1],
|
||||
"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,41,3],
|
||||
"include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd":[5,0,0,41,4],
|
||||
"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,41,0],
|
||||
"include_2network_8php.html":[5,0,0,43],
|
||||
"include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4":[5,0,0,43,0],
|
||||
"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,43,6],
|
||||
"include_2network_8php.html#a2729d012410e470c527a62a3f777ded8":[5,0,0,43,10],
|
||||
"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,43,15],
|
||||
"include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a":[5,0,0,43,8],
|
||||
"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,43,13],
|
||||
"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,43,12],
|
||||
"include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9":[5,0,0,43,5],
|
||||
"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,43,19],
|
||||
"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,43,11],
|
||||
"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,43,20],
|
||||
"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[5,0,0,43,9],
|
||||
"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,43,18],
|
||||
"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,43,7],
|
||||
"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,43,25],
|
||||
"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,43,22],
|
||||
"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,43,23],
|
||||
"include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e":[5,0,0,43,16],
|
||||
"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,43,24],
|
||||
"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,43,3],
|
||||
"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,43,1],
|
||||
"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,43,4],
|
||||
"include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041":[5,0,0,43,14],
|
||||
"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,43,21],
|
||||
"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,43,17],
|
||||
"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,43,2],
|
||||
"include_2notify_8php.html":[5,0,0,45],
|
||||
"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,45,0],
|
||||
"include_2oembed_8php.html":[5,0,0,47],
|
||||
"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,47,5],
|
||||
"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,47,7],
|
||||
"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,47,1],
|
||||
"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,47,4],
|
||||
"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,47,3],
|
||||
"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,47,6],
|
||||
"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,47,0],
|
||||
"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,47,2],
|
||||
"include_2photos_8php.html":[5,0,0,50],
|
||||
"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,50,0],
|
||||
"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,50,2],
|
||||
"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,50,1],
|
||||
"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,50,7],
|
||||
"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,50,3],
|
||||
"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,50,6],
|
||||
"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,50,5],
|
||||
"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,50,4],
|
||||
"include_2menu_8php.html":[5,0,0,41],
|
||||
"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[5,0,0,41,1],
|
||||
"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[5,0,0,41,3],
|
||||
"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[5,0,0,41,8],
|
||||
"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[5,0,0,41,7],
|
||||
"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[5,0,0,41,5],
|
||||
"include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e":[5,0,0,41,10],
|
||||
"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[5,0,0,41,2],
|
||||
"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[5,0,0,41,6],
|
||||
"include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b":[5,0,0,41,9],
|
||||
"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[5,0,0,41,4],
|
||||
"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[5,0,0,41,0],
|
||||
"include_2message_8php.html":[5,0,0,42],
|
||||
"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,42,2],
|
||||
"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,42,1],
|
||||
"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,42,3],
|
||||
"include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd":[5,0,0,42,4],
|
||||
"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,42,0],
|
||||
"include_2network_8php.html":[5,0,0,44],
|
||||
"include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4":[5,0,0,44,0],
|
||||
"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,44,6],
|
||||
"include_2network_8php.html#a2729d012410e470c527a62a3f777ded8":[5,0,0,44,10],
|
||||
"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,44,15],
|
||||
"include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a":[5,0,0,44,8],
|
||||
"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,44,13],
|
||||
"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,44,12],
|
||||
"include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9":[5,0,0,44,5],
|
||||
"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,44,19],
|
||||
"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,44,11],
|
||||
"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,44,20],
|
||||
"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[5,0,0,44,9],
|
||||
"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,44,18],
|
||||
"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,44,7],
|
||||
"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,44,25],
|
||||
"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,44,22],
|
||||
"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,44,23],
|
||||
"include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e":[5,0,0,44,16],
|
||||
"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,44,24],
|
||||
"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,44,3],
|
||||
"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,44,1],
|
||||
"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,44,4],
|
||||
"include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041":[5,0,0,44,14],
|
||||
"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,44,21],
|
||||
"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,44,17],
|
||||
"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,44,2],
|
||||
"include_2notify_8php.html":[5,0,0,46],
|
||||
"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,46,0],
|
||||
"include_2oembed_8php.html":[5,0,0,48],
|
||||
"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,48,5],
|
||||
"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,48,7],
|
||||
"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,48,1],
|
||||
"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,48,4],
|
||||
"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,48,3],
|
||||
"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,48,6],
|
||||
"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,48,0],
|
||||
"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,48,2],
|
||||
"include_2photos_8php.html":[5,0,0,52],
|
||||
"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,52,0],
|
||||
"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,52,2],
|
||||
"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,52,1],
|
||||
"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,52,7],
|
||||
"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,52,3],
|
||||
"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,52,6],
|
||||
"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,52,5],
|
||||
"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,52,4],
|
||||
"index.html":[],
|
||||
"interfaceITemplateEngine.html":[4,0,18],
|
||||
"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[4,0,18,1],
|
||||
@ -146,10 +163,10 @@ var NAVTREEINDEX4 =
|
||||
"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,39,24],
|
||||
"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[5,0,0,39,4],
|
||||
"items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,39,31],
|
||||
"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,39,38],
|
||||
"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[5,0,0,39,3],
|
||||
"items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259":[5,0,0,39,12],
|
||||
"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,39,20],
|
||||
"items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53":[5,0,0,39,39],
|
||||
"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[5,0,0,39,0],
|
||||
"items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,39,44],
|
||||
"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,39,47],
|
||||
@ -168,7 +185,6 @@ var NAVTREEINDEX4 =
|
||||
"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,39,10],
|
||||
"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,39,51],
|
||||
"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,39,26],
|
||||
"items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049":[5,0,0,39,38],
|
||||
"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,39,9],
|
||||
"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,39,30],
|
||||
"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,39,52],
|
||||
@ -183,6 +199,7 @@ var NAVTREEINDEX4 =
|
||||
"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[5,0,0,39,1],
|
||||
"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,39,43],
|
||||
"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,39,18],
|
||||
"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,39,39],
|
||||
"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,39,46],
|
||||
"items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,39,50],
|
||||
"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,39,23],
|
||||
@ -223,31 +240,14 @@ var NAVTREEINDEX4 =
|
||||
"md_config.html":[0],
|
||||
"md_fresh.html":[1],
|
||||
"minimal_8php.html":[5,0,3,0,2],
|
||||
"mitem_8php.html":[5,0,1,47],
|
||||
"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,47,2],
|
||||
"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,47,0],
|
||||
"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,47,1],
|
||||
"mod_2api_8php.html":[5,0,1,4],
|
||||
"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[5,0,1,4,2],
|
||||
"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[5,0,1,4,0],
|
||||
"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[5,0,1,4,1],
|
||||
"mod_2attach_8php.html":[5,0,1,6],
|
||||
"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0],
|
||||
"mod_2directory_8php.html":[5,0,1,15],
|
||||
"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,15,2],
|
||||
"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,15,0],
|
||||
"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,15,1],
|
||||
"mod_2follow_8php.html":[5,0,1,26],
|
||||
"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,26,1],
|
||||
"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,26,0],
|
||||
"mod_2group_8php.html":[5,0,1,28],
|
||||
"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,28,1],
|
||||
"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,28,0],
|
||||
"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,28,2],
|
||||
"mod_2message_8php.html":[5,0,1,45],
|
||||
"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,45,2],
|
||||
"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,45,1],
|
||||
"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,45,0],
|
||||
"mod_2network_8php.html":[5,0,1,48],
|
||||
"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,48,1],
|
||||
"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,48,3],
|
||||
"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,48,0],
|
||||
"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,48,2],
|
||||
"mod_2notify_8php.html":[5,0,1,52]
|
||||
"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0]
|
||||
};
|
||||
|
@ -1,28 +1,52 @@
|
||||
var NAVTREEINDEX5 =
|
||||
{
|
||||
"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,52,1],
|
||||
"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,52,0],
|
||||
"mod_2oembed_8php.html":[5,0,1,53],
|
||||
"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,53,0],
|
||||
"mod_2photos_8php.html":[5,0,1,59],
|
||||
"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,59,2],
|
||||
"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,59,0],
|
||||
"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,59,1],
|
||||
"mod_2directory_8php.html":[5,0,1,15],
|
||||
"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,15,2],
|
||||
"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,15,0],
|
||||
"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,15,1],
|
||||
"mod_2follow_8php.html":[5,0,1,26],
|
||||
"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,26,1],
|
||||
"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,26,0],
|
||||
"mod_2group_8php.html":[5,0,1,28],
|
||||
"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,28,1],
|
||||
"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,28,0],
|
||||
"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,28,2],
|
||||
"mod_2menu_8php.html":[5,0,1,45],
|
||||
"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,45,0],
|
||||
"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,45,1],
|
||||
"mod_2message_8php.html":[5,0,1,46],
|
||||
"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,46,2],
|
||||
"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,46,1],
|
||||
"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,46,0],
|
||||
"mod_2network_8php.html":[5,0,1,50],
|
||||
"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,50,1],
|
||||
"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,50,3],
|
||||
"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,50,0],
|
||||
"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,50,2],
|
||||
"mod_2notify_8php.html":[5,0,1,54],
|
||||
"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,54,1],
|
||||
"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,54,0],
|
||||
"mod_2oembed_8php.html":[5,0,1,55],
|
||||
"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,55,0],
|
||||
"mod_2photos_8php.html":[5,0,1,61],
|
||||
"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,61,2],
|
||||
"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,61,0],
|
||||
"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,61,1],
|
||||
"mod__import_8php.html":[5,0,3,0,3],
|
||||
"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,3,0],
|
||||
"mod__new__channel_8php.html":[5,0,3,0,4],
|
||||
"mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,4,0],
|
||||
"mod__register_8php.html":[5,0,3,0,5],
|
||||
"mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,5,0],
|
||||
"mood_8php.html":[5,0,1,46],
|
||||
"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,46,0],
|
||||
"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,46,1],
|
||||
"msearch_8php.html":[5,0,1,47],
|
||||
"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,47,0],
|
||||
"namespaceFriendica.html":[4,0,1],
|
||||
"mood_8php.html":[5,0,1,48],
|
||||
"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,48,0],
|
||||
"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,48,1],
|
||||
"msearch_8php.html":[5,0,1,49],
|
||||
"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,49,0],
|
||||
"namespaceFriendica.html":[3,0,1],
|
||||
"namespaceacl__selectors.html":[3,0,0],
|
||||
"namespaceFriendica.html":[4,0,1],
|
||||
"namespaceacl__selectors.html":[4,0,0],
|
||||
"namespaceacl__selectors.html":[3,0,0],
|
||||
"namespacefriendica-to-smarty-tpl.html":[4,0,2],
|
||||
"namespacefriendica-to-smarty-tpl.html":[3,0,2],
|
||||
"namespacemembers.html":[3,1,0],
|
||||
@ -33,47 +57,50 @@ var NAVTREEINDEX5 =
|
||||
"namespaceupdatetpl.html":[3,0,3],
|
||||
"namespaceutil.html":[4,0,4],
|
||||
"namespaceutil.html":[3,0,4],
|
||||
"nav_8php.html":[5,0,0,42],
|
||||
"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,42,0],
|
||||
"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,42,1],
|
||||
"new__channel_8php.html":[5,0,1,49],
|
||||
"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,49,2],
|
||||
"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,49,1],
|
||||
"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,49,0],
|
||||
"nogroup_8php.html":[5,0,1,50],
|
||||
"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,50,1],
|
||||
"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,50,0],
|
||||
"notifications_8php.html":[5,0,1,51],
|
||||
"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,51,1],
|
||||
"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,51,0],
|
||||
"notifier_8php.html":[5,0,0,44],
|
||||
"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,44,0],
|
||||
"oauth_8php.html":[5,0,0,46],
|
||||
"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,46,3],
|
||||
"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,46,2],
|
||||
"oexchange_8php.html":[5,0,1,54],
|
||||
"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,54,0],
|
||||
"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,54,1],
|
||||
"onepoll_8php.html":[5,0,0,48],
|
||||
"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,48,0],
|
||||
"opensearch_8php.html":[5,0,1,55],
|
||||
"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,55,0],
|
||||
"page_8php.html":[5,0,1,56],
|
||||
"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,56,1],
|
||||
"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,56,0],
|
||||
"nav_8php.html":[5,0,0,43],
|
||||
"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,43,0],
|
||||
"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,43,1],
|
||||
"new__channel_8php.html":[5,0,1,51],
|
||||
"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,51,2],
|
||||
"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,51,1],
|
||||
"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,51,0],
|
||||
"nogroup_8php.html":[5,0,1,52],
|
||||
"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,52,1],
|
||||
"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,52,0],
|
||||
"notifications_8php.html":[5,0,1,53],
|
||||
"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,53,1],
|
||||
"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,53,0],
|
||||
"notifier_8php.html":[5,0,0,45],
|
||||
"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,45,0],
|
||||
"oauth_8php.html":[5,0,0,47],
|
||||
"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,47,3],
|
||||
"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,47,2],
|
||||
"oexchange_8php.html":[5,0,1,56],
|
||||
"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,56,0],
|
||||
"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,56,1],
|
||||
"onepoll_8php.html":[5,0,0,49],
|
||||
"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,49,0],
|
||||
"opensearch_8php.html":[5,0,1,57],
|
||||
"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,57,0],
|
||||
"page_8php.html":[5,0,1,58],
|
||||
"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,58,1],
|
||||
"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,58,0],
|
||||
"page__widgets_8php.html":[5,0,0,50],
|
||||
"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,50,1],
|
||||
"page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0":[5,0,0,50,0],
|
||||
"pages.html":[],
|
||||
"parse__url_8php.html":[5,0,1,57],
|
||||
"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,57,2],
|
||||
"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,57,3],
|
||||
"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,57,1],
|
||||
"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,57,0],
|
||||
"permissions_8php.html":[5,0,0,49],
|
||||
"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,49,2],
|
||||
"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,49,0],
|
||||
"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,49,3],
|
||||
"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,49,1],
|
||||
"photo_8php.html":[5,0,1,58],
|
||||
"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,58,0],
|
||||
"parse__url_8php.html":[5,0,1,59],
|
||||
"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,59,2],
|
||||
"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,59,3],
|
||||
"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,59,1],
|
||||
"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,59,0],
|
||||
"permissions_8php.html":[5,0,0,51],
|
||||
"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,51,2],
|
||||
"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,51,0],
|
||||
"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,51,3],
|
||||
"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,51,1],
|
||||
"photo_8php.html":[5,0,1,60],
|
||||
"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,60,0],
|
||||
"photo__driver_8php.html":[5,0,0,1,0],
|
||||
"photo__driver_8php.html#a102f3f26f67e0e38f4322a771951c1ca":[5,0,0,1,0,3],
|
||||
"photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[5,0,0,1,0,2],
|
||||
@ -93,85 +120,85 @@ var NAVTREEINDEX5 =
|
||||
"php_2default_8php.html":[5,0,3,0,0],
|
||||
"php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,0,0,0],
|
||||
"php_2theme__init_8php.html":[5,0,3,0,6],
|
||||
"php_8php.html":[5,0,1,60],
|
||||
"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,60,0],
|
||||
"ping_8php.html":[5,0,1,61],
|
||||
"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,61,0],
|
||||
"plugin_8php.html":[5,0,0,51],
|
||||
"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,51,17],
|
||||
"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,51,20],
|
||||
"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,51,8],
|
||||
"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,51,13],
|
||||
"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,51,15],
|
||||
"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,51,7],
|
||||
"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,51,12],
|
||||
"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,51,24],
|
||||
"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,51,9],
|
||||
"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,51,22],
|
||||
"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,51,11],
|
||||
"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,51,19],
|
||||
"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,51,23],
|
||||
"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,51,4],
|
||||
"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,51,0],
|
||||
"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,51,25],
|
||||
"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,51,1],
|
||||
"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,51,21],
|
||||
"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,51,18],
|
||||
"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,51,14],
|
||||
"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,51,3],
|
||||
"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,51,6],
|
||||
"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,51,2],
|
||||
"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,51,10],
|
||||
"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,51,16],
|
||||
"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,51,5],
|
||||
"php_8php.html":[5,0,1,62],
|
||||
"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,62,0],
|
||||
"ping_8php.html":[5,0,1,63],
|
||||
"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,63,0],
|
||||
"plugin_8php.html":[5,0,0,53],
|
||||
"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,53,17],
|
||||
"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,53,20],
|
||||
"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,53,8],
|
||||
"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,53,13],
|
||||
"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,53,15],
|
||||
"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,53,7],
|
||||
"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,53,12],
|
||||
"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,53,24],
|
||||
"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,53,9],
|
||||
"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,53,22],
|
||||
"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,53,11],
|
||||
"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,53,19],
|
||||
"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,53,23],
|
||||
"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,53,4],
|
||||
"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,53,0],
|
||||
"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,53,25],
|
||||
"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,53,1],
|
||||
"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,53,21],
|
||||
"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,53,18],
|
||||
"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,53,14],
|
||||
"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,53,3],
|
||||
"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,53,6],
|
||||
"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,53,2],
|
||||
"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,53,10],
|
||||
"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,53,16],
|
||||
"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,53,5],
|
||||
"po2php_8php.html":[5,0,2,6],
|
||||
"po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[5,0,2,6,0],
|
||||
"poco_8php.html":[5,0,1,62],
|
||||
"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,62,0],
|
||||
"poke_8php.html":[5,0,1,63],
|
||||
"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,63,1],
|
||||
"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,63,0],
|
||||
"poller_8php.html":[5,0,0,52],
|
||||
"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,52,0],
|
||||
"post_8php.html":[5,0,1,64],
|
||||
"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,64,0],
|
||||
"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,64,1],
|
||||
"pretheme_8php.html":[5,0,1,65],
|
||||
"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,65,0],
|
||||
"probe_8php.html":[5,0,1,66],
|
||||
"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,66,0],
|
||||
"profile_8php.html":[5,0,1,67],
|
||||
"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,67,0],
|
||||
"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,67,1],
|
||||
"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,67,2],
|
||||
"profile__advanced_8php.html":[5,0,0,53],
|
||||
"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,53,0],
|
||||
"profile__photo_8php.html":[5,0,1,68],
|
||||
"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,68,1],
|
||||
"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,68,2],
|
||||
"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,68,0],
|
||||
"profile__selectors_8php.html":[5,0,0,54],
|
||||
"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,54,2],
|
||||
"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,54,1],
|
||||
"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,54,0],
|
||||
"profiles_8php.html":[5,0,1,69],
|
||||
"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,69,0],
|
||||
"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,69,2],
|
||||
"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,69,1],
|
||||
"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,69,3],
|
||||
"profperm_8php.html":[5,0,1,70],
|
||||
"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,70,2],
|
||||
"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,70,0],
|
||||
"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,70,1],
|
||||
"qsearch_8php.html":[5,0,1,71],
|
||||
"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,71,0],
|
||||
"queue_8php.html":[5,0,0,56],
|
||||
"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,56,0],
|
||||
"queue__fn_8php.html":[5,0,0,57],
|
||||
"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,57,1],
|
||||
"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,57,0],
|
||||
"randprof_8php.html":[5,0,1,72],
|
||||
"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,72,0],
|
||||
"poco_8php.html":[5,0,1,64],
|
||||
"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,64,0],
|
||||
"poke_8php.html":[5,0,1,65],
|
||||
"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,65,1],
|
||||
"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,65,0],
|
||||
"poller_8php.html":[5,0,0,54],
|
||||
"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,54,0],
|
||||
"post_8php.html":[5,0,1,66],
|
||||
"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,66,0],
|
||||
"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,66,1],
|
||||
"pretheme_8php.html":[5,0,1,67],
|
||||
"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,67,0],
|
||||
"probe_8php.html":[5,0,1,68],
|
||||
"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,68,0],
|
||||
"profile_8php.html":[5,0,1,69],
|
||||
"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,69,0],
|
||||
"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,69,1],
|
||||
"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,69,2],
|
||||
"profile__advanced_8php.html":[5,0,0,55],
|
||||
"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,55,0],
|
||||
"profile__photo_8php.html":[5,0,1,70],
|
||||
"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,70,1],
|
||||
"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,70,2],
|
||||
"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,70,0],
|
||||
"profile__selectors_8php.html":[5,0,0,56],
|
||||
"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,56,2],
|
||||
"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,56,1],
|
||||
"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,56,0],
|
||||
"profiles_8php.html":[5,0,1,71],
|
||||
"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,71,0],
|
||||
"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,71,2],
|
||||
"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,71,1],
|
||||
"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,71,3],
|
||||
"profperm_8php.html":[5,0,1,72],
|
||||
"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,72,2],
|
||||
"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,72,0],
|
||||
"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,72,1],
|
||||
"qsearch_8php.html":[5,0,1,73],
|
||||
"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,73,0],
|
||||
"queue_8php.html":[5,0,0,58],
|
||||
"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,58,0],
|
||||
"queue__fn_8php.html":[5,0,0,59],
|
||||
"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,59,1],
|
||||
"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,59,0],
|
||||
"randprof_8php.html":[5,0,1,74],
|
||||
"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,74,0],
|
||||
"redbasic_2php_2style_8php.html":[5,0,3,1,0,0,1],
|
||||
"redbasic_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,0,0,1,14],
|
||||
"redbasic_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,0,0,1,5],
|
||||
@ -195,8 +222,8 @@ var NAVTREEINDEX5 =
|
||||
"redbasic_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[5,0,3,1,0,0,1,18],
|
||||
"redbasic_2php_2theme_8php.html":[5,0,3,1,0,0,2],
|
||||
"redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[5,0,3,1,0,0,2,0],
|
||||
"redir_8php.html":[5,0,1,73],
|
||||
"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,73,0],
|
||||
"redir_8php.html":[5,0,1,75],
|
||||
"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,75,0],
|
||||
"redstrap_2php_2style_8php.html":[5,0,3,1,1,0,2],
|
||||
"redstrap_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,1,0,2,13],
|
||||
"redstrap_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,1,0,2,5],
|
||||
@ -217,37 +244,10 @@ var NAVTREEINDEX5 =
|
||||
"redstrap_2php_2style_8php.html#aef266cfcb27c6ddb3292584c945bab33":[5,0,3,1,1,0,2,7],
|
||||
"redstrap_2php_2theme_8php.html":[5,0,3,1,1,0,3],
|
||||
"redstrap_2php_2theme_8php.html#a4dac61d466b4261deca2846f548e484a":[5,0,3,1,1,0,3,0],
|
||||
"register_8php.html":[5,0,1,74],
|
||||
"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,74,0],
|
||||
"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,74,2],
|
||||
"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,74,1],
|
||||
"regmod_8php.html":[5,0,1,75],
|
||||
"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,75,0],
|
||||
"removeme_8php.html":[5,0,1,76],
|
||||
"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,76,0],
|
||||
"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,76,1],
|
||||
"rmagic_8php.html":[5,0,1,77],
|
||||
"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,77,0],
|
||||
"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,77,2],
|
||||
"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,77,1],
|
||||
"rsd__xml_8php.html":[5,0,1,78],
|
||||
"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,78,0],
|
||||
"search_8php.html":[5,0,1,79],
|
||||
"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,79,2],
|
||||
"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,79,3],
|
||||
"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,79,0],
|
||||
"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,79,1],
|
||||
"search__ac_8php.html":[5,0,1,80],
|
||||
"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,80,0],
|
||||
"security_8php.html":[5,0,0,58],
|
||||
"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,58,2],
|
||||
"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,58,4],
|
||||
"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,58,5],
|
||||
"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,58,1],
|
||||
"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,58,7],
|
||||
"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,58,3],
|
||||
"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,58,9],
|
||||
"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,58,6],
|
||||
"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,58,0],
|
||||
"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,58,10]
|
||||
"register_8php.html":[5,0,1,76],
|
||||
"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,76,0],
|
||||
"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,76,2],
|
||||
"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,76,1],
|
||||
"regmod_8php.html":[5,0,1,77],
|
||||
"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,77,0]
|
||||
};
|
||||
|
@ -1,178 +1,205 @@
|
||||
var NAVTREEINDEX6 =
|
||||
{
|
||||
"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,58,8],
|
||||
"session_8php.html":[5,0,0,59],
|
||||
"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,59,4],
|
||||
"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,59,0],
|
||||
"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,59,1],
|
||||
"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,59,8],
|
||||
"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,59,5],
|
||||
"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,59,7],
|
||||
"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,59,6],
|
||||
"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,59,3],
|
||||
"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,59,9],
|
||||
"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,59,2],
|
||||
"settings_8php.html":[5,0,1,81],
|
||||
"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,81,0],
|
||||
"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,81,2],
|
||||
"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,81,3],
|
||||
"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,81,1],
|
||||
"setup_8php.html":[5,0,1,82],
|
||||
"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,82,2],
|
||||
"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,82,13],
|
||||
"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,82,5],
|
||||
"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,82,12],
|
||||
"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,82,9],
|
||||
"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,82,3],
|
||||
"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,82,1],
|
||||
"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,82,7],
|
||||
"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,82,11],
|
||||
"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,82,4],
|
||||
"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,82,10],
|
||||
"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,82,8],
|
||||
"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,82,15],
|
||||
"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,82,0],
|
||||
"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,82,14],
|
||||
"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,82,6],
|
||||
"share_8php.html":[5,0,1,83],
|
||||
"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,83,0],
|
||||
"siteinfo_8php.html":[5,0,1,84],
|
||||
"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,84,1],
|
||||
"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,84,0],
|
||||
"sitelist_8php.html":[5,0,1,85],
|
||||
"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,85,0],
|
||||
"smilies_8php.html":[5,0,1,86],
|
||||
"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,86,0],
|
||||
"socgraph_8php.html":[5,0,0,60],
|
||||
"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,60,0],
|
||||
"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,60,6],
|
||||
"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,60,7],
|
||||
"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,60,8],
|
||||
"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,60,1],
|
||||
"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,60,4],
|
||||
"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,60,2],
|
||||
"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,60,5],
|
||||
"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,60,3],
|
||||
"starred_8php.html":[5,0,1,87],
|
||||
"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,87,0],
|
||||
"subthread_8php.html":[5,0,1,88],
|
||||
"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,88,0],
|
||||
"suggest_8php.html":[5,0,1,89],
|
||||
"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,89,0],
|
||||
"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,89,1],
|
||||
"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,89,2],
|
||||
"system__unavailable_8php.html":[5,0,0,61],
|
||||
"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,61,0],
|
||||
"tagger_8php.html":[5,0,1,90],
|
||||
"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,90,0],
|
||||
"tagrm_8php.html":[5,0,1,91],
|
||||
"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,91,1],
|
||||
"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,91,0],
|
||||
"taxonomy_8php.html":[5,0,0,62],
|
||||
"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,62,6],
|
||||
"taxonomy_8php.html#a061b3db9426d4b074395f5824062cad4":[5,0,0,62,8],
|
||||
"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,62,0],
|
||||
"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,62,4],
|
||||
"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,62,2],
|
||||
"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,62,1],
|
||||
"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,62,7],
|
||||
"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,62,11],
|
||||
"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,62,10],
|
||||
"taxonomy_8php.html#abdb698bc6921429df6d697f6c5dec96f":[5,0,0,62,9],
|
||||
"taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2":[5,0,0,62,5],
|
||||
"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,62,3],
|
||||
"template__processor_8php.html":[5,0,0,63],
|
||||
"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,63,3],
|
||||
"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,63,1],
|
||||
"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,63,2],
|
||||
"text_8php.html":[5,0,0,64],
|
||||
"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,64,35],
|
||||
"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,64,40],
|
||||
"text_8php.html#a05b7f26dc2df78681f57eeade53040c6":[5,0,0,64,25],
|
||||
"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,64,6],
|
||||
"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,64,15],
|
||||
"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,64,11],
|
||||
"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,64,39],
|
||||
"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,64,5],
|
||||
"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,64,69],
|
||||
"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,64,29],
|
||||
"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,64,31],
|
||||
"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,64,46],
|
||||
"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,64,41],
|
||||
"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,64,42],
|
||||
"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,64,37],
|
||||
"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,64,4],
|
||||
"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,64,76],
|
||||
"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,64,67],
|
||||
"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,64,43],
|
||||
"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,64,10],
|
||||
"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,64,78],
|
||||
"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,64,72],
|
||||
"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,64,27],
|
||||
"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,64,65],
|
||||
"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,64,7],
|
||||
"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,64,74],
|
||||
"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,64,30],
|
||||
"text_8php.html#a44d460fcdee6247c67b9bef3ea15f3e6":[5,0,0,64,64],
|
||||
"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,64,28],
|
||||
"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,64,38],
|
||||
"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,64,55],
|
||||
"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,64,44],
|
||||
"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,64,54],
|
||||
"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,64,71],
|
||||
"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,64,9],
|
||||
"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,64,14],
|
||||
"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,64,70],
|
||||
"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,64,36],
|
||||
"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,64,24],
|
||||
"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,64,68],
|
||||
"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,64,1],
|
||||
"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,64,23],
|
||||
"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,64,8],
|
||||
"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,64,62],
|
||||
"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,64,66],
|
||||
"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,64,19],
|
||||
"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,64,53],
|
||||
"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,64,18],
|
||||
"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,64,3],
|
||||
"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,64,48],
|
||||
"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,64,59],
|
||||
"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,64,57],
|
||||
"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,64,61],
|
||||
"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,64,26],
|
||||
"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,64,16],
|
||||
"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,64,49],
|
||||
"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,64,32],
|
||||
"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,64,77],
|
||||
"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,64,73],
|
||||
"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,64,75],
|
||||
"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,64,50],
|
||||
"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,64,33],
|
||||
"text_8php.html#aca0f589be74fab1a460c57e88dad9779":[5,0,0,64,63],
|
||||
"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,64,20],
|
||||
"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,64,2],
|
||||
"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,64,13],
|
||||
"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,64,58],
|
||||
"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,64,45],
|
||||
"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,64,34],
|
||||
"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,64,60],
|
||||
"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,64,17],
|
||||
"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,64,51],
|
||||
"text_8php.html#ae4f6881d7e13623f8eded6277595112a":[5,0,0,64,22],
|
||||
"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,64,0],
|
||||
"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,64,56],
|
||||
"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,64,21],
|
||||
"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,64,12],
|
||||
"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,64,52],
|
||||
"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,64,47],
|
||||
"removeme_8php.html":[5,0,1,78],
|
||||
"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,78,0],
|
||||
"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,78,1],
|
||||
"rmagic_8php.html":[5,0,1,79],
|
||||
"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,79,0],
|
||||
"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,79,2],
|
||||
"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,79,1],
|
||||
"rsd__xml_8php.html":[5,0,1,80],
|
||||
"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,80,0],
|
||||
"search_8php.html":[5,0,1,81],
|
||||
"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,81,2],
|
||||
"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,81,3],
|
||||
"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,81,0],
|
||||
"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,81,1],
|
||||
"search__ac_8php.html":[5,0,1,82],
|
||||
"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,82,0],
|
||||
"security_8php.html":[5,0,0,60],
|
||||
"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,60,2],
|
||||
"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,60,4],
|
||||
"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,60,5],
|
||||
"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,60,1],
|
||||
"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,60,7],
|
||||
"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,60,3],
|
||||
"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,60,9],
|
||||
"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,60,6],
|
||||
"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,60,0],
|
||||
"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,60,10],
|
||||
"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,60,8],
|
||||
"session_8php.html":[5,0,0,61],
|
||||
"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,61,4],
|
||||
"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,61,0],
|
||||
"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,61,1],
|
||||
"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,61,8],
|
||||
"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,61,5],
|
||||
"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,61,7],
|
||||
"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,61,6],
|
||||
"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,61,3],
|
||||
"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,61,9],
|
||||
"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,61,2],
|
||||
"settings_8php.html":[5,0,1,83],
|
||||
"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,83,0],
|
||||
"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,83,2],
|
||||
"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,83,3],
|
||||
"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,83,1],
|
||||
"setup_8php.html":[5,0,1,84],
|
||||
"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,84,2],
|
||||
"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,84,13],
|
||||
"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,84,5],
|
||||
"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,84,12],
|
||||
"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,84,9],
|
||||
"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,84,3],
|
||||
"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,84,1],
|
||||
"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,84,7],
|
||||
"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,84,11],
|
||||
"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,84,4],
|
||||
"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,84,10],
|
||||
"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,84,8],
|
||||
"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,84,15],
|
||||
"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,84,0],
|
||||
"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,84,14],
|
||||
"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,84,6],
|
||||
"share_8php.html":[5,0,1,85],
|
||||
"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,85,0],
|
||||
"siteinfo_8php.html":[5,0,1,86],
|
||||
"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,86,1],
|
||||
"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,86,0],
|
||||
"sitelist_8php.html":[5,0,1,87],
|
||||
"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,87,0],
|
||||
"smilies_8php.html":[5,0,1,88],
|
||||
"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,88,0],
|
||||
"socgraph_8php.html":[5,0,0,62],
|
||||
"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,62,0],
|
||||
"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,62,6],
|
||||
"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,62,7],
|
||||
"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,62,8],
|
||||
"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,62,1],
|
||||
"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,62,4],
|
||||
"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,62,2],
|
||||
"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,62,5],
|
||||
"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,62,3],
|
||||
"starred_8php.html":[5,0,1,89],
|
||||
"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,89,0],
|
||||
"subthread_8php.html":[5,0,1,90],
|
||||
"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,90,0],
|
||||
"suggest_8php.html":[5,0,1,91],
|
||||
"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,91,0],
|
||||
"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,91,1],
|
||||
"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,91,2],
|
||||
"system__unavailable_8php.html":[5,0,0,63],
|
||||
"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,63,0],
|
||||
"tagger_8php.html":[5,0,1,92],
|
||||
"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,92,0],
|
||||
"tagrm_8php.html":[5,0,1,93],
|
||||
"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,93,1],
|
||||
"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,93,0],
|
||||
"taxonomy_8php.html":[5,0,0,64],
|
||||
"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,64,6],
|
||||
"taxonomy_8php.html#a061b3db9426d4b074395f5824062cad4":[5,0,0,64,8],
|
||||
"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,64,0],
|
||||
"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,64,4],
|
||||
"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,64,2],
|
||||
"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,64,1],
|
||||
"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,64,7],
|
||||
"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,64,11],
|
||||
"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,64,10],
|
||||
"taxonomy_8php.html#abdb698bc6921429df6d697f6c5dec96f":[5,0,0,64,9],
|
||||
"taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2":[5,0,0,64,5],
|
||||
"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,64,3],
|
||||
"template__processor_8php.html":[5,0,0,65],
|
||||
"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,65,3],
|
||||
"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,65,1],
|
||||
"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,65,2],
|
||||
"text_8php.html":[5,0,0,66],
|
||||
"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,66,35],
|
||||
"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,66,40],
|
||||
"text_8php.html#a05b7f26dc2df78681f57eeade53040c6":[5,0,0,66,25],
|
||||
"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,66,6],
|
||||
"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,66,15],
|
||||
"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,66,11],
|
||||
"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,66,39],
|
||||
"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,66,5],
|
||||
"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,66,69],
|
||||
"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,66,29],
|
||||
"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,66,31],
|
||||
"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,66,46],
|
||||
"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,66,41],
|
||||
"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,66,42],
|
||||
"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,66,37],
|
||||
"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,66,4],
|
||||
"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,66,76],
|
||||
"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,66,67],
|
||||
"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,66,43],
|
||||
"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,66,10],
|
||||
"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,66,78],
|
||||
"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,66,72],
|
||||
"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,66,27],
|
||||
"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,66,65],
|
||||
"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,66,7],
|
||||
"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,66,74],
|
||||
"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,66,30],
|
||||
"text_8php.html#a44d460fcdee6247c67b9bef3ea15f3e6":[5,0,0,66,64],
|
||||
"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,66,28],
|
||||
"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,66,38],
|
||||
"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,66,55],
|
||||
"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,66,44],
|
||||
"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,66,54],
|
||||
"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,66,71],
|
||||
"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,66,9],
|
||||
"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,66,14],
|
||||
"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,66,70],
|
||||
"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,66,36],
|
||||
"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,66,24],
|
||||
"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,66,68],
|
||||
"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,66,1],
|
||||
"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,66,23],
|
||||
"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,66,8],
|
||||
"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,66,62],
|
||||
"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,66,66],
|
||||
"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,66,19],
|
||||
"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,66,53],
|
||||
"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,66,18],
|
||||
"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,66,3],
|
||||
"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,66,48],
|
||||
"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,66,59],
|
||||
"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,66,57],
|
||||
"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,66,61],
|
||||
"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,66,26],
|
||||
"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,66,16],
|
||||
"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,66,49],
|
||||
"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,66,32],
|
||||
"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,66,77],
|
||||
"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,66,73],
|
||||
"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,66,75],
|
||||
"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,66,50],
|
||||
"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,66,33],
|
||||
"text_8php.html#aca0f589be74fab1a460c57e88dad9779":[5,0,0,66,63],
|
||||
"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,66,20],
|
||||
"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,66,2],
|
||||
"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,66,13],
|
||||
"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,66,58],
|
||||
"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,66,45],
|
||||
"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,66,34],
|
||||
"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,66,60],
|
||||
"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,66,17],
|
||||
"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,66,51],
|
||||
"text_8php.html#ae4f6881d7e13623f8eded6277595112a":[5,0,0,66,22],
|
||||
"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,66,0],
|
||||
"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,66,56],
|
||||
"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,66,21],
|
||||
"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,66,12],
|
||||
"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,66,52],
|
||||
"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,66,47],
|
||||
"theme_2redstrap_2php_2default_8php.html":[5,0,3,1,1,0,1],
|
||||
"theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,1,1,0,1,0],
|
||||
"theme_2redstrap_2php_2theme__init_8php.html":[5,0,3,1,1,0,4],
|
||||
"thing_8php.html":[5,0,1,92],
|
||||
"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,92,0],
|
||||
"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,92,1],
|
||||
"toggle__mobile_8php.html":[5,0,1,93],
|
||||
"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,93,0],
|
||||
"thing_8php.html":[5,0,1,94],
|
||||
"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,94,0],
|
||||
"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,94,1],
|
||||
"toggle__mobile_8php.html":[5,0,1,95],
|
||||
"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,95,0],
|
||||
"tpldebug_8php.html":[5,0,2,7],
|
||||
"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[5,0,2,7,0],
|
||||
"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[5,0,2,7,1],
|
||||
@ -186,18 +213,18 @@ var NAVTREEINDEX6 =
|
||||
"typohelper_8php.html":[5,0,2,9],
|
||||
"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[5,0,2,9,0],
|
||||
"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[5,0,2,9,1],
|
||||
"uexport_8php.html":[5,0,1,94],
|
||||
"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,94,0],
|
||||
"update__channel_8php.html":[5,0,1,95],
|
||||
"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,95,0],
|
||||
"update__community_8php.html":[5,0,1,96],
|
||||
"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,96,0],
|
||||
"update__display_8php.html":[5,0,1,97],
|
||||
"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,97,0],
|
||||
"update__network_8php.html":[5,0,1,98],
|
||||
"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,98,0],
|
||||
"update__search_8php.html":[5,0,1,99],
|
||||
"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,99,0],
|
||||
"uexport_8php.html":[5,0,1,96],
|
||||
"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,96,0],
|
||||
"update__channel_8php.html":[5,0,1,97],
|
||||
"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,97,0],
|
||||
"update__community_8php.html":[5,0,1,98],
|
||||
"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,98,0],
|
||||
"update__display_8php.html":[5,0,1,99],
|
||||
"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,99,0],
|
||||
"update__network_8php.html":[5,0,1,100],
|
||||
"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,100,0],
|
||||
"update__search_8php.html":[5,0,1,101],
|
||||
"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,101,0],
|
||||
"updatetpl_8py.html":[5,0,2,10],
|
||||
"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[5,0,2,10,5],
|
||||
"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[5,0,2,10,2],
|
||||
@ -213,41 +240,14 @@ var NAVTREEINDEX6 =
|
||||
"view_2theme_2redstrap_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,1,1,0,0,1],
|
||||
"view_2theme_2redstrap_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,1,1,0,0,2],
|
||||
"view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e":[5,0,3,1,1,0,0,0],
|
||||
"view_8php.html":[5,0,1,100],
|
||||
"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,100,0],
|
||||
"viewconnections_8php.html":[5,0,1,101],
|
||||
"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,101,2],
|
||||
"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,101,1],
|
||||
"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,101,0],
|
||||
"viewsrc_8php.html":[5,0,1,102],
|
||||
"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,102,0],
|
||||
"wall__attach_8php.html":[5,0,1,103],
|
||||
"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,103,0],
|
||||
"wall__upload_8php.html":[5,0,1,104],
|
||||
"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,104,0],
|
||||
"webfinger_8php.html":[5,0,1,105],
|
||||
"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,105,0],
|
||||
"webpages_8php.html":[5,0,1,106],
|
||||
"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,106,0],
|
||||
"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[5,0,1,106,1],
|
||||
"wfinger_8php.html":[5,0,1,107],
|
||||
"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,107,0],
|
||||
"xchan_8php.html":[5,0,1,108],
|
||||
"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,108,0],
|
||||
"xrd_8php.html":[5,0,1,109],
|
||||
"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,109,0],
|
||||
"zfinger_8php.html":[5,0,1,110],
|
||||
"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,110,0],
|
||||
"zot_8php.html":[5,0,0,65],
|
||||
"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,65,11],
|
||||
"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[5,0,0,65,20],
|
||||
"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,65,5],
|
||||
"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,65,13],
|
||||
"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[5,0,0,65,8],
|
||||
"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,65,15],
|
||||
"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,65,3],
|
||||
"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[5,0,0,65,4],
|
||||
"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,65,19],
|
||||
"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,65,24],
|
||||
"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,65,16]
|
||||
"view_8php.html":[5,0,1,102],
|
||||
"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,102,0],
|
||||
"viewconnections_8php.html":[5,0,1,103],
|
||||
"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,103,2],
|
||||
"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,103,1],
|
||||
"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,103,0],
|
||||
"viewsrc_8php.html":[5,0,1,104],
|
||||
"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,104,0],
|
||||
"wall__attach_8php.html":[5,0,1,105],
|
||||
"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,105,0]
|
||||
};
|
||||
|
@ -1,20 +1,46 @@
|
||||
var NAVTREEINDEX7 =
|
||||
{
|
||||
"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab":[5,0,0,65,14],
|
||||
"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,65,0],
|
||||
"zot_8php.html#a77720d6b59894e9b609af89c310c8a4d":[5,0,0,65,17],
|
||||
"zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d":[5,0,0,65,23],
|
||||
"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,65,22],
|
||||
"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,65,10],
|
||||
"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,65,9],
|
||||
"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,65,12],
|
||||
"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[5,0,0,65,6],
|
||||
"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,65,21],
|
||||
"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,65,25],
|
||||
"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,65,7],
|
||||
"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,65,1],
|
||||
"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,65,18],
|
||||
"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,65,2],
|
||||
"zotfeed_8php.html":[5,0,1,111],
|
||||
"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,111,0]
|
||||
"wall__upload_8php.html":[5,0,1,106],
|
||||
"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,106,0],
|
||||
"webfinger_8php.html":[5,0,1,107],
|
||||
"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,107,0],
|
||||
"webpages_8php.html":[5,0,1,108],
|
||||
"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,108,0],
|
||||
"wfinger_8php.html":[5,0,1,109],
|
||||
"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,109,0],
|
||||
"xchan_8php.html":[5,0,1,110],
|
||||
"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,110,0],
|
||||
"xrd_8php.html":[5,0,1,111],
|
||||
"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,111,0],
|
||||
"zfinger_8php.html":[5,0,1,112],
|
||||
"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,112,0],
|
||||
"zot_8php.html":[5,0,0,67],
|
||||
"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,67,11],
|
||||
"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[5,0,0,67,20],
|
||||
"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,67,5],
|
||||
"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,67,13],
|
||||
"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[5,0,0,67,8],
|
||||
"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,67,15],
|
||||
"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,67,3],
|
||||
"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[5,0,0,67,4],
|
||||
"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,67,19],
|
||||
"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,67,24],
|
||||
"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,67,16],
|
||||
"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab":[5,0,0,67,14],
|
||||
"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,67,0],
|
||||
"zot_8php.html#a77720d6b59894e9b609af89c310c8a4d":[5,0,0,67,17],
|
||||
"zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d":[5,0,0,67,23],
|
||||
"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,67,22],
|
||||
"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,67,10],
|
||||
"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,67,9],
|
||||
"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,67,12],
|
||||
"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[5,0,0,67,6],
|
||||
"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,67,21],
|
||||
"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,67,25],
|
||||
"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,67,7],
|
||||
"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,67,1],
|
||||
"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,67,18],
|
||||
"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,67,2],
|
||||
"zotfeed_8php.html":[5,0,1,113],
|
||||
"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,113,0]
|
||||
};
|
||||
|
177
doc/html/page__widgets_8php.html
Normal file
177
doc/html/page__widgets_8php.html
Normal file
@ -0,0 +1,177 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.3.1"/>
|
||||
<title>The Red Matrix: include/page_widgets.php File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { searchBox.OnSelectItem(0); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectlogo"><img alt="Logo" src="rhash-64.png"/></td>
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">The Red Matrix
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.3.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="annotated.html"><span>Classes</span></a></li>
|
||||
<li class="current"><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>File Members</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('page__widgets_8php.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Pages</a></div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">page_widgets.php File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a1a1e729da27f252cab6678288a17958f"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f">writepages_widget</a> ($who, $which)</td></tr>
|
||||
<tr class="separator:a1a1e729da27f252cab6678288a17958f"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ad82011c1ed90d9de8b9f34c12af5c6f0"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0">pagelist_widget</a> ($chan, $who)</td></tr>
|
||||
<tr class="separator:ad82011c1ed90d9de8b9f34c12af5c6f0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<h2 class="groupheader">Function Documentation</h2>
|
||||
<a class="anchor" id="ad82011c1ed90d9de8b9f34c12af5c6f0"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">pagelist_widget </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$chan</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$who</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a1a1e729da27f252cab6678288a17958f"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">writepages_widget </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$who</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype"> </td>
|
||||
<td class="paramname"><em>$which</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="page_8php.html#a91a5f649f68406149108bded1dc90b22">page_content()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
|
5
doc/html/page__widgets_8php.js
Normal file
5
doc/html/page__widgets_8php.js
Normal file
@ -0,0 +1,5 @@
|
||||
var page__widgets_8php =
|
||||
[
|
||||
[ "pagelist_widget", "page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0", null ],
|
||||
[ "writepages_widget", "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f", null ]
|
||||
];
|
@ -195,7 +195,7 @@ Functions</h2></td></tr>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>: array of all permissions, key is permission name, value is true or false </dd></dl>
|
||||
|
||||
<p>Referenced by <a class="el" href="security_8php.html#a8d23d2597aae380a3341872fe9513380">change_channel()</a>, <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="editwebpage_8php.html#a375e945255fad79a71036528f7480650">editwebpage_content()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="page_8php.html#a91a5f649f68406149108bded1dc90b22">page_content()</a>, <a class="el" href="mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014">photos_init()</a>, and <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="security_8php.html#a8d23d2597aae380a3341872fe9513380">change_channel()</a>, <a class="el" href="channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1">channel_content()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="editwebpage_8php.html#a375e945255fad79a71036528f7480650">editwebpage_content()</a>, <a class="el" href="lastpost_8php.html#a82f14cce5d3cfe27f40bdbd2c679d493">lastpost_content()</a>, <a class="el" href="page_8php.html#a91a5f649f68406149108bded1dc90b22">page_content()</a>, <a class="el" href="mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014">photos_init()</a>, <a class="el" href="webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d">webpages_content()</a>, and <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -168,7 +168,7 @@ Variables</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="classApp.html#af6d39f63fb7116bbeb04e51696f99474">App\__construct()</a>, <a class="el" href="classTemplate.html#aae9c4d761ea1298e745e8052d7910194">Template\_get_var()</a>, <a class="el" href="classTemplate.html#abf71098c80fd1f218a59452b3408309e">Template\_replcb_for()</a>, <a class="el" href="items_8php.html#a36e656667193c83aa2cc03a024fc131b">activity_sanitise()</a>, <a class="el" href="profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4">advanced_profile()</a>, <a class="el" href="crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286">aes_encapsulate()</a>, <a class="el" href="crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914">aes_unencapsulate()</a>, <a class="el" href="zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7">build_sync_packet()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="connections_8php.html#a1224058db8e3fb56463eb312f98e561d">connections_post()</a>, <a class="el" href="contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f">contact_poll_interval()</a>, <a class="el" href="contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53">contact_reputation()</a>, <a class="el" href="plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35">get_plugin_info()</a>, <a class="el" href="plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405">get_theme_info()</a>, <a class="el" href="photo__driver_8php.html#a7273b82b017fd96d29b2c57bab03aea6">guess_image_type()</a>, <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile()</a>, <a class="el" href="conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3">item_photo_menu()</a>, <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update()</a>, <a class="el" href="include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1">load_config()</a>, <a class="el" href="include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6">load_pconfig()</a>, <a class="el" href="include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33">load_xconfig()</a>, <a class="el" href="mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718">message_post()</a>, <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood_content()</a>, <a class="el" href="mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec">network_init()</a>, <a class="el" href="include_2follow_8php.html#a6553a7650fae55f95660510d90983144">new_contact()</a>, <a class="el" href="classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050">FKOAuthDataStore\new_request_token()</a>, <a class="el" href="taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2">obj_verb_selector()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="po2php_8php.html#a3b75e36f913198299e99559b175cd8b4">po2php_run()</a>, <a class="el" href="poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498">poco_init()</a>, <a class="el" href="poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993">poke_content()</a>, <a class="el" href="include_2message_8php.html#a5f8de9847e203329e317ac38dc646898">private_messages_fetch_conversation()</a>, <a class="el" href="include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091">private_messages_fetch_message()</a>, <a class="el" href="include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e">private_messages_list()</a>, <a class="el" href="zot_8php.html#ac301c67864917c35922257950ae0f95c">process_channel_sync_delivery()</a>, <a class="el" href="include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e">requestdata()</a>, <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App\set_widget()</a>, <a class="el" href="settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586">settings_post()</a>, <a class="el" href="boot_8php.html#aca47505b8732177f52bb2d647eb2741c">startup()</a>, <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>, <a class="el" href="language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d">tt()</a>, <a class="el" href="boot_8php.html#a01353c9abebc3544ea080ac161729632">x()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, and <a class="el" href="zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d">zot_refresh()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="classApp.html#af6d39f63fb7116bbeb04e51696f99474">App\__construct()</a>, <a class="el" href="classTemplate.html#aae9c4d761ea1298e745e8052d7910194">Template\_get_var()</a>, <a class="el" href="classTemplate.html#abf71098c80fd1f218a59452b3408309e">Template\_replcb_for()</a>, <a class="el" href="items_8php.html#a36e656667193c83aa2cc03a024fc131b">activity_sanitise()</a>, <a class="el" href="profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4">advanced_profile()</a>, <a class="el" href="crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286">aes_encapsulate()</a>, <a class="el" href="crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914">aes_unencapsulate()</a>, <a class="el" href="zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7">build_sync_packet()</a>, <a class="el" href="connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c">connections_content()</a>, <a class="el" href="connections_8php.html#a1224058db8e3fb56463eb312f98e561d">connections_post()</a>, <a class="el" href="contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f">contact_poll_interval()</a>, <a class="el" href="contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53">contact_reputation()</a>, <a class="el" href="plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35">get_plugin_info()</a>, <a class="el" href="plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405">get_theme_info()</a>, <a class="el" href="photo__driver_8php.html#a7273b82b017fd96d29b2c57bab03aea6">guess_image_type()</a>, <a class="el" href="zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32">import_directory_profile()</a>, <a class="el" href="conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3">item_photo_menu()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1">load_config()</a>, <a class="el" href="include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6">load_pconfig()</a>, <a class="el" href="include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33">load_xconfig()</a>, <a class="el" href="mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718">message_post()</a>, <a class="el" href="mood_8php.html#a721b9b6703b3234a005641c92d409b8f">mood_content()</a>, <a class="el" href="mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec">network_init()</a>, <a class="el" href="include_2follow_8php.html#a6553a7650fae55f95660510d90983144">new_contact()</a>, <a class="el" href="classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050">FKOAuthDataStore\new_request_token()</a>, <a class="el" href="taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2">obj_verb_selector()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="po2php_8php.html#a3b75e36f913198299e99559b175cd8b4">po2php_run()</a>, <a class="el" href="poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498">poco_init()</a>, <a class="el" href="poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993">poke_content()</a>, <a class="el" href="include_2message_8php.html#a5f8de9847e203329e317ac38dc646898">private_messages_fetch_conversation()</a>, <a class="el" href="include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091">private_messages_fetch_message()</a>, <a class="el" href="include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e">private_messages_list()</a>, <a class="el" href="zot_8php.html#ac301c67864917c35922257950ae0f95c">process_channel_sync_delivery()</a>, <a class="el" href="include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e">requestdata()</a>, <a class="el" href="classApp.html#a123b903dfe5d3488cc68db3471d36fd2">App\set_widget()</a>, <a class="el" href="settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586">settings_post()</a>, <a class="el" href="boot_8php.html#aca47505b8732177f52bb2d647eb2741c">startup()</a>, <a class="el" href="dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a">syncdirs()</a>, <a class="el" href="language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d">tt()</a>, <a class="el" href="boot_8php.html#a01353c9abebc3544ea080ac161729632">x()</a>, <a class="el" href="zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0">zfinger_init()</a>, and <a class="el" href="zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d">zot_refresh()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -22,6 +22,7 @@ var searchData=
|
||||
['account_5fremove',['account_remove',['../Contact_8php.html#a3eef54a5523e568a28257c1f9b1644d8',1,'Contact.php']]],
|
||||
['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]],
|
||||
['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]],
|
||||
['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]],
|
||||
['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]],
|
||||
['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]],
|
||||
['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]],
|
||||
|
@ -41,6 +41,7 @@ var searchData=
|
||||
['item',['Item',['../classItem.html',1,'']]],
|
||||
['item_2ephp',['item.php',['../item_8php.html',1,'']]],
|
||||
['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]],
|
||||
['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]],
|
||||
['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]],
|
||||
['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]],
|
||||
['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]],
|
||||
@ -65,8 +66,8 @@ var searchData=
|
||||
['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]],
|
||||
['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]],
|
||||
['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]],
|
||||
['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]],
|
||||
['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53',1,'items.php']]],
|
||||
['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]],
|
||||
['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]],
|
||||
['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]],
|
||||
['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]],
|
||||
['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]],
|
||||
|
@ -21,6 +21,23 @@ var searchData=
|
||||
['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]],
|
||||
['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]],
|
||||
['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]],
|
||||
['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]],
|
||||
['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]],
|
||||
['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]],
|
||||
['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]],
|
||||
['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]],
|
||||
['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]],
|
||||
['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]],
|
||||
['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]],
|
||||
['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]],
|
||||
['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]],
|
||||
['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]],
|
||||
['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]],
|
||||
['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]],
|
||||
['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]],
|
||||
['menu_5flist',['menu_list',['../include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b',1,'menu.php']]],
|
||||
['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]],
|
||||
['menu_5frender',['menu_render',['../include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e',1,'menu.php']]],
|
||||
['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]],
|
||||
['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]],
|
||||
['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]],
|
||||
@ -29,6 +46,10 @@ var searchData=
|
||||
['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]],
|
||||
['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]],
|
||||
['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]],
|
||||
['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]],
|
||||
['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]],
|
||||
['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]],
|
||||
['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]],
|
||||
['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]],
|
||||
['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]],
|
||||
['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]],
|
||||
|
@ -10,6 +10,8 @@ var searchData=
|
||||
['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]],
|
||||
['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]],
|
||||
['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]],
|
||||
['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]],
|
||||
['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0',1,'page_widgets.php']]],
|
||||
['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]],
|
||||
['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]],
|
||||
['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]],
|
||||
|
@ -7,6 +7,7 @@ var searchData=
|
||||
['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]],
|
||||
['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]],
|
||||
['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]],
|
||||
['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]],
|
||||
['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]],
|
||||
['readme_2emd',['README.md',['../README_8md.html',1,'']]],
|
||||
['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]],
|
||||
|
@ -10,9 +10,9 @@ var searchData=
|
||||
['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]],
|
||||
['webpages_2ephp',['webpages.php',['../webpages_8php.html',1,'']]],
|
||||
['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]],
|
||||
['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]],
|
||||
['wfinger_2ephp',['wfinger.php',['../wfinger_8php.html',1,'']]],
|
||||
['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]],
|
||||
['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]],
|
||||
['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]]
|
||||
['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]],
|
||||
['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]]
|
||||
];
|
||||
|
@ -3,9 +3,12 @@ var searchData=
|
||||
['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]],
|
||||
['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]],
|
||||
['match_2ephp',['match.php',['../match_8php.html',1,'']]],
|
||||
['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]],
|
||||
['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]],
|
||||
['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]],
|
||||
['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]],
|
||||
['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]],
|
||||
['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]],
|
||||
['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]],
|
||||
['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]],
|
||||
['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]],
|
||||
|
@ -1,6 +1,7 @@
|
||||
var searchData=
|
||||
[
|
||||
['page_2ephp',['page.php',['../page_8php.html',1,'']]],
|
||||
['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]],
|
||||
['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]],
|
||||
['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]],
|
||||
['photo_2ephp',['photo.php',['../photo_8php.html',1,'']]],
|
||||
|
@ -44,7 +44,7 @@ var searchData=
|
||||
['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]],
|
||||
['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]],
|
||||
['item_5fredir_5fand_5freplace_5fimages',['item_redir_and_replace_images',['../conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533',1,'conversation.php']]],
|
||||
['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]],
|
||||
['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53',1,'items.php']]],
|
||||
['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]],
|
||||
['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]],
|
||||
['items_5ffetch',['items_fetch',['../items_8php.html#a756738301f2ed96be50232500677d58a',1,'items.php']]]
|
||||
];
|
||||
|
@ -10,11 +10,27 @@ var searchData=
|
||||
['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]],
|
||||
['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]],
|
||||
['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]],
|
||||
['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]],
|
||||
['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]],
|
||||
['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]],
|
||||
['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]],
|
||||
['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]],
|
||||
['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]],
|
||||
['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]],
|
||||
['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]],
|
||||
['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]],
|
||||
['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]],
|
||||
['menu_5flist',['menu_list',['../include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b',1,'menu.php']]],
|
||||
['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]],
|
||||
['menu_5frender',['menu_render',['../include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e',1,'menu.php']]],
|
||||
['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]],
|
||||
['message_5fcontent',['message_content',['../mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79',1,'message.php']]],
|
||||
['message_5fpost',['message_post',['../mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718',1,'message.php']]],
|
||||
['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]],
|
||||
['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]],
|
||||
['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]],
|
||||
['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]],
|
||||
['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]],
|
||||
['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]],
|
||||
['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]],
|
||||
['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]]
|
||||
|
@ -2,6 +2,7 @@ var searchData=
|
||||
[
|
||||
['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]],
|
||||
['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]],
|
||||
['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0',1,'page_widgets.php']]],
|
||||
['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]],
|
||||
['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]],
|
||||
['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]],
|
||||
|
@ -3,6 +3,7 @@ var searchData=
|
||||
['random_5fprofile',['random_profile',['../Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c',1,'Contact.php']]],
|
||||
['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]],
|
||||
['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]],
|
||||
['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]],
|
||||
['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]],
|
||||
['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]],
|
||||
['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a29a6e1ef07465d1617d836b859b3b2b2',1,'redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny, $colour_scheme, $radius): config.php'],['../view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e',1,'redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny): config.php']]],
|
||||
|
@ -6,7 +6,7 @@ var searchData=
|
||||
['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]],
|
||||
['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]],
|
||||
['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]],
|
||||
['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]],
|
||||
['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]],
|
||||
['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]]
|
||||
['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]],
|
||||
['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]]
|
||||
];
|
||||
|
@ -16,6 +16,7 @@ var searchData=
|
||||
['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]],
|
||||
['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]],
|
||||
['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]],
|
||||
['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]],
|
||||
['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]],
|
||||
['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]],
|
||||
['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]],
|
||||
|
@ -2,6 +2,7 @@ var searchData=
|
||||
[
|
||||
['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../redbasic_2php_2style_8php.html#ac4c6bc3cd9cc92204f04cf6cb34b47dd',1,'if(): style.php'],['../theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../redstrap_2php_2style_8php.html#a0c4684da834439885ae2285649d1aaea',1,'if(): style.php']]],
|
||||
['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]],
|
||||
['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]],
|
||||
['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]],
|
||||
['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]],
|
||||
['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]],
|
||||
|
@ -7,5 +7,7 @@ var searchData=
|
||||
['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]],
|
||||
['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]],
|
||||
['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]],
|
||||
['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]]
|
||||
['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]],
|
||||
['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]],
|
||||
['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]]
|
||||
];
|
||||
|
@ -397,7 +397,7 @@ Functions</h2></td></tr>
|
||||
<p>Profile owner - everything is visible</p>
|
||||
<p>Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.</p>
|
||||
|
||||
<p>Referenced by <a class="el" href="include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36">attach_by_hash()</a>, <a class="el" href="include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932">attach_by_hash_nodata()</a>, <a class="el" href="include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3">attach_count_files()</a>, <a class="el" href="include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d">attach_list_files()</a>, <a class="el" href="photo_8php.html#a582779d24882b0d31ee909a91d70a448">photo_init()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812">photos_content()</a>, <a class="el" href="include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51">photos_list_photos()</a>, and <a class="el" href="include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909">z_readdir()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36">attach_by_hash()</a>, <a class="el" href="include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932">attach_by_hash_nodata()</a>, <a class="el" href="include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3">attach_count_files()</a>, <a class="el" href="include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d">attach_list_files()</a>, <a class="el" href="include_2menu_8php.html#a68ebbf492470c930f652013656f9071d">menu_fetch()</a>, <a class="el" href="photo_8php.html#a582779d24882b0d31ee909a91d70a448">photo_init()</a>, <a class="el" href="include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9">photos_albums_list()</a>, <a class="el" href="mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812">photos_content()</a>, <a class="el" href="include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51">photos_list_photos()</a>, and <a class="el" href="include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909">z_readdir()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -246,7 +246,7 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="conversation_8php.html#a1e97305a441dc143edbe09e17d1ceda1">conversation()</a>, <a class="el" href="items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7">item_getfeedtags()</a>, <a class="el" href="text_8php.html#ae4df74296fbe55051ed3c035e55205e5">prepare_body()</a>, <a class="el" href="items_8php.html#ab1bce4261bcf75ad62753b498a144d17">tag_deliver()</a>, and <a class="el" href="items_8php.html#a88c6cf7649ac836fbbed82a7a0315110">tgroup_check()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="conversation_8php.html#a1e97305a441dc143edbe09e17d1ceda1">conversation()</a>, <a class="el" href="items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc">item_expire()</a>, <a class="el" href="items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7">item_getfeedtags()</a>, <a class="el" href="text_8php.html#ae4df74296fbe55051ed3c035e55205e5">prepare_body()</a>, <a class="el" href="items_8php.html#ab1bce4261bcf75ad62753b498a144d17">tag_deliver()</a>, and <a class="el" href="items_8php.html#a88c6cf7649ac836fbbed82a7a0315110">tgroup_check()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -130,7 +130,7 @@ Variables</h2></td></tr>
|
||||
<b>Initial value:</b><div class="fragment"><div class="line">= <<< <a class="code" href="typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805">EOT</a></div>
|
||||
<div class="line"> error_reporting(E_ERROR | E_WARNING | E_PARSE )</div>
|
||||
</div><!-- fragment -->
|
||||
<p>Referenced by <a class="el" href="include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25">api_date()</a>, <a class="el" href="setup_8php.html#a14d208682a88632290c895d20da6e7d6">check_php()</a>, <a class="el" href="text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3">check_webbie()</a>, <a class="el" href="dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e">dbesc()</a>, <a class="el" href="classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e">dba_mysql\escape()</a>, <a class="el" href="classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64">dba_mysqli\escape()</a>, <a class="el" href="plugin_8php.html#af92789f559b89a380e49d303218aeeca">head_get_css()</a>, <a class="el" href="plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1">head_get_js()</a>, <a class="el" href="items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53">item_store_update()</a>, <a class="el" href="setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a">load_database()</a>, <a class="el" href="include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe">photos_album_get_db_idstr()</a>, <a class="el" href="mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080">photos_post()</a>, <a class="el" href="items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0">posted_dates()</a>, <a class="el" href="datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82">relative_date()</a>, <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">stream_perms_api_uids()</a>, <a class="el" href="thing_8php.html#a8be23b1d475ec3d9291999221c674c80">thing_init()</a>, and <a class="el" href="text_8php.html#aaed4413ed8918838b517e3b2fafaea0d">xmlify()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25">api_date()</a>, <a class="el" href="setup_8php.html#a14d208682a88632290c895d20da6e7d6">check_php()</a>, <a class="el" href="text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3">check_webbie()</a>, <a class="el" href="dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e">dbesc()</a>, <a class="el" href="classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e">dba_mysql\escape()</a>, <a class="el" href="classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64">dba_mysqli\escape()</a>, <a class="el" href="plugin_8php.html#af92789f559b89a380e49d303218aeeca">head_get_css()</a>, <a class="el" href="plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1">head_get_js()</a>, <a class="el" href="items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484">item_store_update()</a>, <a class="el" href="setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a">load_database()</a>, <a class="el" href="include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe">photos_album_get_db_idstr()</a>, <a class="el" href="mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080">photos_post()</a>, <a class="el" href="items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0">posted_dates()</a>, <a class="el" href="datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82">relative_date()</a>, <a class="el" href="security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809">stream_perms_api_uids()</a>, <a class="el" href="thing_8php.html#a8be23b1d475ec3d9291999221c674c80">thing_init()</a>, and <a class="el" href="text_8php.html#aaed4413ed8918838b517e3b2fafaea0d">xmlify()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -144,7 +144,7 @@ Variables</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Referenced by <a class="el" href="nav_8php.html#a43be0df73b90647ea70947ce004e231e">nav()</a>, <a class="el" href="mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec">network_init()</a>, <a class="el" href="subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3">subthread_content()</a>, and <a class="el" href="system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa">system_down()</a>.</p>
|
||||
<p>Referenced by <a class="el" href="nav_8php.html#a43be0df73b90647ea70947ce004e231e">nav()</a>, <a class="el" href="subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3">subthread_content()</a>, and <a class="el" href="system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa">system_down()</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -112,8 +112,6 @@ $(document).ready(function(){initNavTree('webpages_8php.html','');});
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:af9ad0b65eba79acead3fa32b43d888b7"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7">webpages_init</a> (&$a)</td></tr>
|
||||
<tr class="separator:af9ad0b65eba79acead3fa32b43d888b7"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:af3b7397d4abc153e3d2147740ee1a41d"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d">webpages_content</a> (&$a)</td></tr>
|
||||
<tr class="separator:af3b7397d4abc153e3d2147740ee1a41d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
@ -132,22 +130,6 @@ Functions</h2></td></tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="af9ad0b65eba79acead3fa32b43d888b7"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">webpages_init </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">& </td>
|
||||
<td class="paramname"><em>$a</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
|
@ -1,5 +1,4 @@
|
||||
var webpages_8php =
|
||||
[
|
||||
[ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ],
|
||||
[ "webpages_init", "webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7", null ]
|
||||
[ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ]
|
||||
];
|
171
done
171
done
@ -1,171 +0,0 @@
|
||||
Files transitioned to Red:
|
||||
|
||||
Legend:
|
||||
|
||||
+ Mostly or completely transitioned
|
||||
? Minimally transitioned, probably needs more work
|
||||
= Unlikely to require changes
|
||||
- Not needed in Red
|
||||
|
||||
(No marker - has not yet been transitioned, may have some patches applied)
|
||||
|
||||
|
||||
include/
|
||||
|
||||
+ account.php
|
||||
acl_selectors.php
|
||||
+ activities.php
|
||||
? api.php
|
||||
? attach.php
|
||||
+ auth.php
|
||||
- bb2diaspora.php (check for function dependencies before removing)
|
||||
+ bbcode.php
|
||||
= cache.php
|
||||
= config.php
|
||||
Contact.php
|
||||
contact_selectors.php
|
||||
contact_widgets.php
|
||||
? conversation.php
|
||||
+ cronhooks.php
|
||||
? crypto.php
|
||||
+ datetime.php (todo: html removal)
|
||||
? dba.php
|
||||
? delivery.php
|
||||
+ directory.php
|
||||
+ enotify.php
|
||||
+ event.php
|
||||
+ expire.php
|
||||
? follow.php
|
||||
+ gprobe.php
|
||||
+ group.php
|
||||
= html2bbcode.php
|
||||
= html2plain.php
|
||||
+ identity.php
|
||||
? items.php
|
||||
+ js_strings.php
|
||||
+ language.php
|
||||
? message.php
|
||||
- msgclean.php
|
||||
? nav.php
|
||||
network.php
|
||||
+ notifier.php
|
||||
oauth.php
|
||||
oembed.php
|
||||
? onepoll.php
|
||||
? Photo.php
|
||||
? plugin.php
|
||||
? poller.php
|
||||
? profile_advanced.php
|
||||
profile_selectors.php
|
||||
? queue_fn.php
|
||||
? queue.php
|
||||
- salmon.php
|
||||
+ security.php
|
||||
? session.php
|
||||
? socgraph.php
|
||||
= system_unavailable.php
|
||||
= template_processor.php
|
||||
? text.php
|
||||
- user.php
|
||||
+ zot.php
|
||||
|
||||
|
||||
mod/
|
||||
|
||||
+ abook.php -> moved to connections.php
|
||||
? acl.php
|
||||
admin.php
|
||||
+ allfriends.php
|
||||
+ api.php
|
||||
+ apps.php
|
||||
+ attach.php
|
||||
- auth.php
|
||||
- cb.php
|
||||
common.php
|
||||
community.php
|
||||
+ contactgroup.php
|
||||
crepair.php
|
||||
delegate.php
|
||||
? directory.php
|
||||
dirfind.php
|
||||
display.php
|
||||
editpost.php
|
||||
? events.php
|
||||
fbrowser.php
|
||||
feed.php
|
||||
filerm.php
|
||||
filer.php
|
||||
follow.php
|
||||
friendica.php -> moved to siteinfo.php, require HTML templating, more
|
||||
fsuggest.php
|
||||
+ group.php
|
||||
- hcard.php -> not needed
|
||||
= help.php
|
||||
+ home.php
|
||||
hostxrd.php -> probably not needed
|
||||
? install.php
|
||||
invite.php
|
||||
+ item.php
|
||||
+ like.php
|
||||
+ lockview.php
|
||||
+ login.php
|
||||
+ lostpass.php
|
||||
? magic.php
|
||||
+ manage.php
|
||||
match.php
|
||||
? message.php
|
||||
? mood.php
|
||||
msearch.php
|
||||
? network.php
|
||||
nogroup.php
|
||||
notifications.php
|
||||
+ notify.php
|
||||
? oembed.php
|
||||
+ oexchange.php
|
||||
+ opensearch.php
|
||||
= parse_url.php
|
||||
+ photo.php
|
||||
photos.php
|
||||
+ ping.php (needs more work)
|
||||
+ poco.php
|
||||
+ poke.php
|
||||
? post.php
|
||||
+ pretheme.php
|
||||
+ probe.php
|
||||
? profile_photo.php
|
||||
? profile.php
|
||||
+ profiles.php
|
||||
profperm.php
|
||||
qsearch.php
|
||||
+ randprof.php
|
||||
- redir.php
|
||||
+ register.php
|
||||
? regmod.php
|
||||
removeme.php
|
||||
rsd_xml.php (what do we need this for? What functionality/feature does it enable)
|
||||
search_ac.php
|
||||
search.php
|
||||
settings.php - partially done
|
||||
+ share.php
|
||||
+ smilies.php
|
||||
+ starred.php
|
||||
subthread.php
|
||||
+ suggest.php
|
||||
tagger.php
|
||||
tagrm.php
|
||||
? uexport.php
|
||||
? update_community.php - needs converting to json
|
||||
? update_network.php - needs converting to json
|
||||
? update_profile.php - needs converting to json
|
||||
? viewconnections.php
|
||||
? view.php
|
||||
+ viewsrc.php
|
||||
+ wall_attach.php (needs remote permissions refactor)
|
||||
+ wall_upload.php (needs remote permissions refactor)
|
||||
webfinger.php
|
||||
+ _well_known.php
|
||||
xrd.php
|
||||
+ zchannel.php
|
||||
+ zfinger.php
|
||||
? zperms.php
|
||||
|
@ -15,13 +15,20 @@ function rconnect_url($channel_id,$xchan) {
|
||||
if($r)
|
||||
return '';
|
||||
|
||||
$r = q("select * from xchan where xchan_hash = '%s' limit 1",
|
||||
dbesc($xchan)
|
||||
);
|
||||
|
||||
if(($r) && ($r[0]['xchan_follow']))
|
||||
return $r[0]['xchan_follow'];
|
||||
|
||||
$r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d ) limit 1",
|
||||
dbesc($xchan),
|
||||
intval(HUBLOC_FLAGS_PRIMARY)
|
||||
);
|
||||
|
||||
if($r)
|
||||
return $r[0]['hubloc_url'];
|
||||
return $r[0]['hubloc_url'] . '/follow?f=&url=%s';
|
||||
return '';
|
||||
|
||||
}
|
||||
@ -295,8 +302,8 @@ function contact_remove($channel_id, $abook_id) {
|
||||
|
||||
$archive = get_pconfig($channel_id, 'system','archive_removed_contacts');
|
||||
if($archive) {
|
||||
q("update abook set abook_flags = abook_flags | %d where abook_id = %d and abook_channel = %d limit 1",
|
||||
intval(ABOOK_FLAG_ARCHIVE),
|
||||
q("update abook set abook_flags = ( abook_flags | %d ) where abook_id = %d and abook_channel = %d limit 1",
|
||||
intval(ABOOK_FLAG_ARCHIVED),
|
||||
intval($abook_id),
|
||||
intval($channel_id)
|
||||
);
|
||||
|
@ -39,10 +39,10 @@ class Item extends BaseObject {
|
||||
foreach($data['children'] as $item) {
|
||||
|
||||
/*
|
||||
* Only add thos that will be displayed
|
||||
* Only add those that will be displayed
|
||||
*/
|
||||
|
||||
if(! visible_activity($item)) {
|
||||
if((! visible_activity($item)) || array_key_exists('author_blocked',$item)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ function nuke_session() {
|
||||
unset($_SESSION['administrator']);
|
||||
unset($_SESSION['cid']);
|
||||
unset($_SESSION['theme']);
|
||||
unset($_SESSION['mobile-theme']);
|
||||
unset($_SESSION['mobile_theme']);
|
||||
unset($_SESSION['page_flags']);
|
||||
unset($_SESSION['submanage']);
|
||||
unset($_SESSION['my_url']);
|
||||
|
@ -137,7 +137,7 @@ function localize_item(&$item){
|
||||
case ACTIVITY_OBJ_NOTE:
|
||||
default:
|
||||
$post_type = t('status');
|
||||
if($obj['id'] != $item['mid'])
|
||||
if($obj['mid'] != $obj['parent_mid'])
|
||||
$post_type = t('comment');
|
||||
break;
|
||||
}
|
||||
@ -162,6 +162,9 @@ function localize_item(&$item){
|
||||
$item['body'] .= "\n\n\n" . '[zrl=' . chanlink_url($author_link) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]';
|
||||
|
||||
}
|
||||
else {
|
||||
logger('localize_item like failed: link ' . $author_link . ' name ' . $author_name . ' url ' . $item_url);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -712,6 +715,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') {
|
||||
$threads = array();
|
||||
foreach($items as $item) {
|
||||
|
||||
// Check for any blocked authors
|
||||
|
||||
if($arr_blocked) {
|
||||
$blocked = false;
|
||||
foreach($arr_blocked as $b) {
|
||||
@ -724,6 +729,18 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check all the kids too
|
||||
|
||||
if($arr_blocked && $item['children']) {
|
||||
for($d = 0; $d < count($item['children']); $d ++) {
|
||||
foreach($arr_blocked as $b) {
|
||||
if(($b) && ($item['children'][$d]['author_xchan'] == $b))
|
||||
$item['children'][$d]['author_blocked'] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Can we put this after the visibility check?
|
||||
like_puller($a,$item,$alike,'like');
|
||||
|
||||
|
@ -19,15 +19,15 @@ function get_features() {
|
||||
// General
|
||||
'general' => array(
|
||||
t('General Features'),
|
||||
array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')),
|
||||
// uncomment when expire is fixed
|
||||
// array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')),
|
||||
array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')),
|
||||
array('webpages', t('Web Pages'), t('Provide managed web pages on your channel')),
|
||||
array('prettyphoto', t('Enhanced Photo Albums'), t('Enable photo album with enhanced features')),
|
||||
//FIXME - needs a description, but how the hell do we explain this to normals?
|
||||
array('sendzid', t('Extended Identity Sharing'), t(' ')),
|
||||
array('expert', t('Expert Mode'), t('Enable Expert Mode to provide advanced configuration options')),
|
||||
|
||||
|
||||
array('premium_channel', t('Premium Channel'), t('Allows you to set restrictions and terms on those that connect with your channel')),
|
||||
),
|
||||
|
||||
// Post composition
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
require_once('include/zot.php');
|
||||
|
||||
function new_contact($uid,$url,$channel,$interactive = false) {
|
||||
function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) {
|
||||
|
||||
$result = array('success' => false,'message' => '');
|
||||
|
||||
@ -60,6 +60,11 @@ function new_contact($uid,$url,$channel,$interactive = false) {
|
||||
return $result;
|
||||
}
|
||||
|
||||
// Premium channel, set confirm before callback to avoid recursion
|
||||
|
||||
if(array_key_exists('connect_url',$j) && (! $confirm))
|
||||
goaway(zid($j['connect_url']));
|
||||
|
||||
|
||||
// check service class limits
|
||||
|
||||
@ -145,12 +150,13 @@ function new_contact($uid,$url,$channel,$interactive = false) {
|
||||
);
|
||||
}
|
||||
else {
|
||||
$r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_created, abook_updated )
|
||||
values( %d, %d, '%s', %d, '%s', '%s' ) ",
|
||||
$r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated )
|
||||
values( %d, %d, '%s', %d, %d, '%s', '%s' ) ",
|
||||
intval($aid),
|
||||
intval($uid),
|
||||
dbesc($xchan_hash),
|
||||
intval($their_perms),
|
||||
intval(PERMS_W_STREAM|PERMS_W_MAIL),
|
||||
dbesc(datetime_convert()),
|
||||
dbesc(datetime_convert())
|
||||
);
|
||||
|
@ -115,11 +115,19 @@ function create_identity($arr) {
|
||||
if(array_key_exists('primary', $arr))
|
||||
$primary = intval($arr['primary']);
|
||||
|
||||
$perms_sql = '';
|
||||
|
||||
$defperms = site_default_perms();
|
||||
$global_perms = get_perms();
|
||||
foreach($defperms as $p => $v) {
|
||||
$perms_keys .= ', ' . $global_perms[$p][0];
|
||||
$perms_vals .= ', ' . intval($v);
|
||||
}
|
||||
|
||||
$r = q("insert into channel ( channel_account_id, channel_primary,
|
||||
channel_name, channel_address, channel_guid, channel_guid_sig,
|
||||
channel_hash, channel_prvkey, channel_pubkey, channel_pageflags )
|
||||
values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d ) ",
|
||||
channel_hash, channel_prvkey, channel_pubkey, channel_pageflags $perms_keys )
|
||||
values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d $perms_vals ) ",
|
||||
|
||||
intval($arr['account_id']),
|
||||
intval($primary),
|
||||
@ -133,6 +141,9 @@ function create_identity($arr) {
|
||||
intval($pageflags)
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
$r = q("select * from channel where channel_account_id = %d
|
||||
and channel_guid = '%s' limit 1",
|
||||
intval($arr['account_id']),
|
||||
@ -171,7 +182,7 @@ function create_identity($arr) {
|
||||
|
||||
$newuid = $ret['channel']['channel_id'];
|
||||
|
||||
$r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
|
||||
$r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_follow, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
|
||||
dbesc($hash),
|
||||
dbesc($guid),
|
||||
dbesc($sig),
|
||||
@ -181,6 +192,7 @@ function create_identity($arr) {
|
||||
dbesc($a->get_baseurl() . "/photo/profile/s/{$newuid}"),
|
||||
dbesc($ret['channel']['channel_address'] . '@' . get_app()->get_hostname()),
|
||||
dbesc(z_root() . '/channel/' . $ret['channel']['channel_address']),
|
||||
dbesc(z_root() . '/follow?f=&url=%s'),
|
||||
dbesc($ret['channel']['channel_name']),
|
||||
dbesc('zot'),
|
||||
dbesc(datetime_convert()),
|
||||
|
@ -31,10 +31,11 @@ function collect_recipients($item,&$private) {
|
||||
}
|
||||
else {
|
||||
$recipients = array();
|
||||
$r = q("select * from abook where abook_channel = %d and not (abook_flags & %d) and not (abook_flags & %d)",
|
||||
$r = q("select * from abook where abook_channel = %d and not (abook_flags & %d) and not (abook_flags & %d) and not (abook_flags & %d)",
|
||||
intval($item['uid']),
|
||||
intval(ABOOK_FLAG_SELF),
|
||||
intval(ABOOK_FLAG_PENDING)
|
||||
intval(ABOOK_FLAG_PENDING),
|
||||
intval(ABOOK_FLAG_ARCHIVED)
|
||||
);
|
||||
if($r) {
|
||||
foreach($r as $rr) {
|
||||
@ -772,14 +773,19 @@ function decode_tags($t) {
|
||||
|
||||
function activity_sanitise($arr) {
|
||||
if($arr) {
|
||||
$ret = array();
|
||||
foreach($arr as $k => $x) {
|
||||
if(is_array($x))
|
||||
$ret[$k] = activity_sanitise($x);
|
||||
else
|
||||
$ret[$k] = htmlentities($x, ENT_COMPAT,'UTF-8',false);
|
||||
if(is_array($arr)) {
|
||||
$ret = array();
|
||||
foreach($arr as $k => $x) {
|
||||
if(is_array($x))
|
||||
$ret[$k] = activity_sanitise($x);
|
||||
else
|
||||
$ret[$k] = htmlentities($x, ENT_COMPAT,'UTF-8',false);
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
else {
|
||||
return htmlentities($arr, ENT_COMPAT,'UTF-8', false);
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
@ -834,6 +840,9 @@ function encode_mail($item) {
|
||||
$x['from'] = encode_item_xchan($item['from']);
|
||||
$x['to'] = encode_item_xchan($item['to']);
|
||||
|
||||
if($item['attach'])
|
||||
$x['attach'] = json_decode_plus($item['attach']);
|
||||
|
||||
$x['flags'] = array();
|
||||
|
||||
if($item['mail_flags'] & MAIL_RECALLED) {
|
||||
@ -879,6 +888,9 @@ function get_mail_elements($x) {
|
||||
$arr['mid'] = (($x['message_id']) ? htmlentities($x['message_id'], ENT_COMPAT,'UTF-8',false) : '');
|
||||
$arr['parent_mid'] = (($x['message_parent']) ? htmlentities($x['message_parent'], ENT_COMPAT,'UTF-8',false) : '');
|
||||
|
||||
if($x['attach'])
|
||||
$arr['attach'] = activity_sanitise($x['attach']);
|
||||
|
||||
|
||||
if(import_author_xchan($x['from']))
|
||||
$arr['from_xchan'] = base64url_encode(hash('whirlpool',$x['from']['guid'] . $x['from']['guid_sig'], true));
|
||||
@ -1411,12 +1423,15 @@ function item_store($arr,$allow_exec = false) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
if($arr['object'])
|
||||
logger('item_store: input object: ' . print_r($arr['object'],true), LOGGER_DATA);
|
||||
|
||||
|
||||
if((x($arr,'object')) && is_array($arr['object'])) {
|
||||
activity_sanitise($arr['object']);
|
||||
logger('item_store: sanitised object: ' . print_r($arr['object'],true), LOGGER_DATA);
|
||||
$arr['object'] = json_encode($arr['object']);
|
||||
logger('item_store: encoded object: ' . print_r($arr['object'],true), LOGGER_DATA);
|
||||
}
|
||||
|
||||
if((x($arr,'target')) && is_array($arr['target'])) {
|
||||
@ -1571,10 +1586,10 @@ function item_store($arr,$allow_exec = false) {
|
||||
unset($arr['term']);
|
||||
}
|
||||
|
||||
dbesc_array($arr);
|
||||
|
||||
logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
|
||||
|
||||
dbesc_array($arr);
|
||||
|
||||
$r = dbq("INSERT INTO `item` (`"
|
||||
. implode("`, `", array_keys($arr))
|
||||
. "`) VALUES ('"
|
||||
@ -2193,6 +2208,9 @@ function mail_store($arr) {
|
||||
if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
|
||||
$arr['body'] = escape_tags($arr['body']);
|
||||
|
||||
if(array_key_exists('attach',$arr) && is_array($arr['attach']))
|
||||
$arr['attach'] = json_encode($arr['attach']);
|
||||
|
||||
$arr['account_id'] = ((x($arr,'account_id')) ? intval($arr['account_id']) : 0);
|
||||
$arr['mid'] = ((x($arr,'mid')) ? notags(trim($arr['mid'])) : random_string());
|
||||
$arr['from_xchan'] = ((x($arr,'from_xchan')) ? notags(trim($arr['from_xchan'])) : '');
|
||||
@ -2201,6 +2219,7 @@ function mail_store($arr) {
|
||||
$arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : '');
|
||||
$arr['parent_mid'] = ((x($arr,'parent_mid')) ? notags(trim($arr['parent_mid'])) : '');
|
||||
$arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
|
||||
|
||||
$arr['mail_flags'] = ((x($arr,'mail_flags')) ? intval($arr['mail_flags']) : 0 );
|
||||
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
/* Private Message backend API */
|
||||
|
||||
require_once('include/crypto.php');
|
||||
require_once('include/attach.php');
|
||||
|
||||
// send a private message
|
||||
|
||||
@ -74,14 +75,44 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto='
|
||||
if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match))
|
||||
$images = $match[1];
|
||||
|
||||
$match = false;
|
||||
|
||||
if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match))
|
||||
$attaches = $match[1];
|
||||
|
||||
$attachments = '';
|
||||
|
||||
if(preg_match_all('/(\[attachment\](.*?)\[\/attachment\])/',$body,$match)) {
|
||||
$attachments = array();
|
||||
foreach($match[2] as $mtch) {
|
||||
$hash = substr($mtch,0,strpos($mtch,','));
|
||||
$rev = intval(substr($mtch,strpos($mtch,',')));
|
||||
$r = attach_by_hash_nodata($hash,$rev);
|
||||
if($r['success']) {
|
||||
$attachments[] = array(
|
||||
'href' => $a->get_baseurl() . '/attach/' . $r['data']['hash'],
|
||||
'length' => $r['data']['filesize'],
|
||||
'type' => $r['data']['filetype'],
|
||||
'title' => urlencode($r['data']['filename']),
|
||||
'revision' => $r['data']['revision']
|
||||
);
|
||||
}
|
||||
$body = str_replace($match[1],'',$body);
|
||||
}
|
||||
}
|
||||
|
||||
$jattach = (($attachments) ? json_encode($attachments) : '');
|
||||
|
||||
$key = get_config('system','pubkey');
|
||||
if($subject)
|
||||
$subject = json_encode(aes_encapsulate($subject,$key));
|
||||
if($body)
|
||||
$body = json_encode(aes_encapsulate($body,$key));
|
||||
|
||||
$r = q("INSERT INTO mail ( account_id, mail_flags, channel_id, from_xchan, to_xchan, title, body, mid, parent_mid, created )
|
||||
VALUES ( %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
|
||||
|
||||
|
||||
$r = q("INSERT INTO mail ( account_id, mail_flags, channel_id, from_xchan, to_xchan, title, body, attach, mid, parent_mid, created )
|
||||
VALUES ( %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
|
||||
intval($channel['channel_account_id']),
|
||||
intval(MAIL_OBSCURED),
|
||||
intval($channel['channel_id']),
|
||||
@ -89,6 +120,7 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto='
|
||||
dbesc($recipient),
|
||||
dbesc($subject),
|
||||
dbesc($body),
|
||||
dbesc($jattach),
|
||||
dbesc($mid),
|
||||
dbesc($replyto),
|
||||
dbesc(datetime_convert())
|
||||
@ -122,6 +154,19 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto='
|
||||
}
|
||||
}
|
||||
|
||||
if($attaches) {
|
||||
foreach($attaches as $attach) {
|
||||
$hash = substr($attach,0,strpos($attach,','));
|
||||
$rev = intval(substr($attach,strpos($attach,',')));
|
||||
attach_store($channel,$observer_hash,$options = 'update', array(
|
||||
'hash' => $hash,
|
||||
'revision' => $rev,
|
||||
'allow_cid' => '<' . $recipient . '>',
|
||||
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
proc_run('php','include/notifier.php','mail',$post_id);
|
||||
|
||||
$ret['success'] = true;
|
||||
|
@ -54,6 +54,7 @@ require_once('include/html2plain.php');
|
||||
* ZOT
|
||||
* permission_update abook_id
|
||||
* refresh_all channel_id
|
||||
* expire channel_id
|
||||
* relay item_id (item was relayed to owner, we will deliver it as owner)
|
||||
*
|
||||
*/
|
||||
@ -166,14 +167,24 @@ function notifier_run($argv, $argc){
|
||||
elseif($cmd === 'expire') {
|
||||
$normal_mode = false;
|
||||
$expire = true;
|
||||
$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
|
||||
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
|
||||
intval($item_id)
|
||||
$items = q("SELECT * FROM item WHERE uid = %d AND ( item_flags & %d )
|
||||
AND ( item_restrict & %d ) AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
|
||||
intval($item_id),
|
||||
intval(ITEM_WALL),
|
||||
intval(ITEM_DELETED)
|
||||
);
|
||||
$uid = $item_id;
|
||||
$item_id = 0;
|
||||
if(! count($items))
|
||||
if(! $items)
|
||||
return;
|
||||
|
||||
// FIXME
|
||||
// This will require a special zot packet containing a list of item message_id's to be expired.
|
||||
// This packet will be public, since we cannot selectively deliver here.
|
||||
// We need the handling on this end to create the array, and the handling on the remote end
|
||||
// to verify permissions (for each item) and process it. Until this is complete, the expire feature will be disabled.
|
||||
|
||||
return;
|
||||
}
|
||||
elseif($cmd === 'suggest') {
|
||||
$normal_mode = false;
|
||||
|
@ -145,7 +145,7 @@ class FKOAuth1 extends OAuthServer {
|
||||
}
|
||||
$_SESSION['uid'] = $record['uid'];
|
||||
$_SESSION['theme'] = $record['theme'];
|
||||
$_SESSION['mobile-theme'] = get_pconfig($record['uid'], 'system', 'mobile_theme');
|
||||
$_SESSION['mobile_theme'] = get_pconfig($record['uid'], 'system', 'mobile_theme');
|
||||
$_SESSION['authenticated'] = 1;
|
||||
$_SESSION['page_flags'] = $record['page-flags'];
|
||||
$_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $record['nickname'];
|
||||
|
@ -328,3 +328,38 @@ function check_list_permissions($uid,$arr,$perm) {
|
||||
return($result);
|
||||
}
|
||||
|
||||
|
||||
|
||||
function site_default_perms() {
|
||||
|
||||
$typical = array(
|
||||
'view_stream' => PERMS_PUBLIC,
|
||||
'view_profile' => PERMS_PUBLIC,
|
||||
'view_photos' => PERMS_PUBLIC,
|
||||
'view_contacts' => PERMS_PUBLIC,
|
||||
'view_storage' => PERMS_PUBLIC,
|
||||
'view_pages' => PERMS_PUBLIC,
|
||||
'send_stream' => PERMS_SPECIFIC,
|
||||
'post_wall' => PERMS_SPECIFIC,
|
||||
'post_comments' => PERMS_SPECIFIC,
|
||||
'post_mail' => PERMS_SPECIFIC,
|
||||
'post_photos' => 0,
|
||||
'tag_deliver' => PERMS_SPECIFIC,
|
||||
'chat' => PERMS_SPECIFIC,
|
||||
'write_storage' => 0,
|
||||
'write_pages' => 0,
|
||||
'delegate' => 0,
|
||||
);
|
||||
|
||||
|
||||
$global_perms = get_perms();
|
||||
$ret = array();
|
||||
|
||||
foreach($global_perms as $perm => $v) {
|
||||
$x = get_config('default_perms',$perm);
|
||||
if($x === false)
|
||||
$x = $typical[$perm];
|
||||
$ret[$perm] = $x;
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
|
@ -84,7 +84,8 @@ function poller_run($argv, $argc){
|
||||
|
||||
|
||||
set_config('system','last_expire_day',$d2);
|
||||
proc_run('php','include/expire.php');
|
||||
// Uncomment when expire protocol component is working
|
||||
// proc_run('php','include/expire.php');
|
||||
|
||||
proc_run('php','include/cli_suggest.php');
|
||||
|
||||
@ -117,18 +118,18 @@ function poller_run($argv, $argc){
|
||||
$force = false;
|
||||
$restart = false;
|
||||
|
||||
if((argc() > 1) && (argv(1) == 'force'))
|
||||
if(($argc > 1) && ($argv[1] == 'force'))
|
||||
$force = true;
|
||||
|
||||
if((argc() > 1) && (argv(1) == 'restart')) {
|
||||
if(($argc > 1) && ($argv[1] == 'restart')) {
|
||||
$restart = true;
|
||||
$generation = intval(argv(2));
|
||||
$generation = intval($argv[2]);
|
||||
if(! $generation)
|
||||
killme();
|
||||
}
|
||||
|
||||
if((argc() > 1) && intval(argv(1))) {
|
||||
$manual_id = intval(argv(1));
|
||||
if(($argc > 1) && intval($argv[1])) {
|
||||
$manual_id = intval($argv[1]);
|
||||
$force = true;
|
||||
}
|
||||
|
||||
@ -156,7 +157,8 @@ function poller_run($argv, $argc){
|
||||
: ''
|
||||
);
|
||||
|
||||
$contacts = q("SELECT abook_id, abook_updated, abook_closeness, abook_channel
|
||||
|
||||
$contacts = q("SELECT abook_id, abook_updated, abook_connected, abook_closeness, abook_channel
|
||||
FROM abook LEFT JOIN account on abook_account = account_id where 1
|
||||
$sql_extra
|
||||
AND (( abook_flags = %d ) OR ( abook_flags = %d ))
|
||||
@ -188,10 +190,10 @@ function poller_run($argv, $argc){
|
||||
else {
|
||||
// if we've never connected with them, start the mark for death countdown from now
|
||||
|
||||
if($c === '0000-00-00 00:00:00') {
|
||||
if($c == '0000-00-00 00:00:00') {
|
||||
$r = q("update abook set abook_connected = '%s' where abook_id = %d limit 1",
|
||||
dbesc(datetime_convert()),
|
||||
intval($abook['abook_id'])
|
||||
intval($contact['abook_id'])
|
||||
);
|
||||
$c = datetime_convert();
|
||||
$update = true;
|
||||
@ -199,8 +201,8 @@ function poller_run($argv, $argc){
|
||||
|
||||
// He's dead, Jim
|
||||
|
||||
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 30 day")) {
|
||||
$r = q("update abook set abook_flags = (abook_flags & %d) where abook_id = %d limit 1",
|
||||
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) {
|
||||
$r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1",
|
||||
intval(ABOOK_FLAG_ARCHIVED),
|
||||
intval($contact['abook_id'])
|
||||
);
|
||||
@ -212,17 +214,17 @@ function poller_run($argv, $argc){
|
||||
|
||||
// recently deceased, so keep up the regular schedule for 3 days
|
||||
|
||||
if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 3 day"))
|
||||
&& (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")))
|
||||
if((strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 3 day")) > 0)
|
||||
&& (strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 1 day")) > 0))
|
||||
$update = true;
|
||||
|
||||
// After that back off and put them on a morphine drip
|
||||
|
||||
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 2 day")) {
|
||||
if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 2 day")) > 0) {
|
||||
$update = true;
|
||||
}
|
||||
}
|
||||
|
||||
dbg(0);
|
||||
if((! $update) && (! $force))
|
||||
continue;
|
||||
|
||||
|
@ -34,6 +34,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
|
||||
else {
|
||||
$_SESSION['uid'] = $user_record['uid'];
|
||||
$_SESSION['theme'] = $user_record['theme'];
|
||||
$_SESSION['mobile_theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme');
|
||||
$_SESSION['authenticated'] = 1;
|
||||
$_SESSION['page_flags'] = $user_record['page-flags'];
|
||||
$_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $user_record['nickname'];
|
||||
@ -148,6 +149,7 @@ function change_channel($change_channel) {
|
||||
$_SESSION['uid'] = intval($r[0]['channel_id']);
|
||||
get_app()->set_channel($r[0]);
|
||||
$_SESSION['theme'] = $r[0]['channel_theme'];
|
||||
$_SESSION['mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme');
|
||||
date_default_timezone_set($r[0]['channel_timezone']);
|
||||
$ret = $r[0];
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
<?php /** @file */
|
||||
|
||||
require_once('include/dir_fns.php');
|
||||
require_once('include/zot.php');
|
||||
|
||||
/*
|
||||
|
@ -441,6 +441,9 @@ function import_xchan($arr) {
|
||||
dbesc($xchan_hash)
|
||||
);
|
||||
|
||||
if(! array_key_exists('connect_url', $arr))
|
||||
$arr['connect_url'] = '';
|
||||
|
||||
|
||||
if($r) {
|
||||
if($r[0]['xchan_photo_date'] != $arr['photo_updated'])
|
||||
@ -462,18 +465,22 @@ function import_xchan($arr) {
|
||||
$new_flags = $r[0]['xchan_flags'] ^ XCHAN_FLAGS_HIDDEN;
|
||||
else
|
||||
$new_flags = $r[0]['xchan_flags'];
|
||||
|
||||
|
||||
|
||||
if(($r[0]['xchan_name_date'] != $arr['name_updated'])
|
||||
|| ($r[0]['xchan_connurl'] != $arr['connections_url'])
|
||||
|| ($r[0]['xchan_flags'] != $new_flags)
|
||||
|| ($r[0]['xchan_addr'] != $arr['address'])
|
||||
|| ($r[0]['xchan_follow'] != $arr['follow_url'])
|
||||
|| ($r[0]['xchan_connpage'] != $arr['connect_url'])
|
||||
|| ($r[0]['xchan_url'] != $arr['url'])) {
|
||||
$r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s', xchan_flags = %d,
|
||||
$r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s', xchan_follow = '%s',
|
||||
xchan_connpage = '%s', xchan_flags = %d,
|
||||
xchan_addr = '%s', xchan_url = '%s' where xchan_hash = '%s' limit 1",
|
||||
dbesc($arr['name']),
|
||||
dbesc($arr['name_updated']),
|
||||
dbesc($arr['connections_url']),
|
||||
dbesc($arr['follow_url']),
|
||||
dbesc($arr['connect_url']),
|
||||
intval($new_flags),
|
||||
dbesc($arr['address']),
|
||||
dbesc($arr['url']),
|
||||
@ -503,8 +510,8 @@ function import_xchan($arr) {
|
||||
$new_flags = 0;
|
||||
|
||||
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
|
||||
xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_name, xchan_network, xchan_photo_date, xchan_name_date, xchan_flags)
|
||||
values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d) ",
|
||||
xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date, xchan_name_date, xchan_flags)
|
||||
values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d) ",
|
||||
dbesc($xchan_hash),
|
||||
dbesc($arr['guid']),
|
||||
dbesc($arr['guid_sig']),
|
||||
@ -514,6 +521,8 @@ function import_xchan($arr) {
|
||||
dbesc($arr['address']),
|
||||
dbesc($arr['url']),
|
||||
dbesc($arr['connections_url']),
|
||||
dbesc($arr['follow_url']),
|
||||
dbesc($arr['connect_url']),
|
||||
dbesc($arr['name']),
|
||||
dbesc('zot'),
|
||||
dbesc($arr['photo_updated']),
|
||||
@ -829,6 +838,7 @@ function zot_import($arr) {
|
||||
// and who are allowed to see them based on the sender's permissions
|
||||
|
||||
$deliveries = allowed_public_recips($i);
|
||||
|
||||
}
|
||||
if(! $deliveries) {
|
||||
logger('zot_import: no deliveries on this site');
|
||||
@ -901,10 +911,12 @@ function zot_import($arr) {
|
||||
|
||||
function public_recips($msg) {
|
||||
|
||||
$check_mentions = false;
|
||||
if($msg['message']['type'] === 'activity') {
|
||||
if(array_key_exists('flags',$msg['message']) && in_array('thread_parent', $msg['message']['flags'])) {
|
||||
$col = 'channel_w_stream';
|
||||
$field = PERMS_W_STREAM;
|
||||
$check_mentions = true;
|
||||
}
|
||||
else {
|
||||
$col = 'channel_w_comment';
|
||||
@ -919,6 +931,7 @@ function public_recips($msg) {
|
||||
if(! $col)
|
||||
return NULL;
|
||||
|
||||
|
||||
if($msg['notify']['sender']['url'] === z_root())
|
||||
$sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_SITE . " )) ";
|
||||
else
|
||||
@ -938,6 +951,27 @@ function public_recips($msg) {
|
||||
$x = array();
|
||||
|
||||
$r = array_merge($r,$x);
|
||||
|
||||
// look for any public mentions on this site
|
||||
// They will get filtered by tgroup_check() so we don't need to check permissions now
|
||||
|
||||
if($check_mentions && $msg['message']['tags']) {
|
||||
if(is_array($msg['message']['tags']) && $msg['message']['tags']) {
|
||||
foreach($msg['message']['tags'] as $tag) {
|
||||
if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) {
|
||||
$address = basename($tag['url']);
|
||||
if($address) {
|
||||
$z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1",
|
||||
dbesc($address)
|
||||
);
|
||||
if($z)
|
||||
$r = array_merge($r,$z);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
logger('public_recips: ' . print_r($r,true), LOGGER_DATA);
|
||||
return $r;
|
||||
}
|
||||
|
@ -328,7 +328,7 @@ if($a->module_loaded) {
|
||||
if(x($_SESSION,'visitor_home'))
|
||||
$homebase = $_SESSION['visitor_home'];
|
||||
elseif(local_user())
|
||||
$homebase = $a->get_baseurl() . '/channel/' . $a->user['nickname'];
|
||||
$homebase = $a->get_baseurl() . '/channel/' . $a->channel['channel_address'];
|
||||
|
||||
if(isset($homebase))
|
||||
$a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
|
||||
|
105
install.txt
105
install.txt
@ -1,105 +0,0 @@
|
||||
|
||||
Red Installation
|
||||
===============
|
||||
|
||||
Red should run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites. But be aware that Red is more than a simple web application. The kind of functionality offered by Red requires a bit more of the host system than the typical blog. Not every PHP/MySQL hosting provider will be able to support Red. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation.
|
||||
|
||||
Also if you encounter installation issues, please let us know via the Github issue tracker (https://github.com/friendica/red/issues). Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues.
|
||||
|
||||
Before you begin: Choose a domain name or subdomain name for your server.
|
||||
|
||||
1. Requirements
|
||||
- Apache with mod-rewrite enabled and "Options All" so you can use a
|
||||
local .htaccess file
|
||||
|
||||
- PHP 5.3 or later
|
||||
- PHP *command line* access with register_argc_argv set to true in the
|
||||
php.ini file
|
||||
- curl, gd, mysql, and openssl extensions
|
||||
- some form of email server or email gateway such that PHP mail() works
|
||||
- mcrypt (optional; used for server-to-server message encryption)
|
||||
|
||||
- Mysql 5.x
|
||||
|
||||
- ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks
|
||||
(Windows) [Note: other options are presented in Section 7 of this document]
|
||||
|
||||
- Installation into a top-level domain or sub-domain (without a
|
||||
directory/path component in the URL) is preferred. Directory paths will
|
||||
not be as convenient to use and have not been thoroughly tested.
|
||||
|
||||
|
||||
[Dreamhost.com offers all of the necessary hosting features at a
|
||||
reasonable price. If your hosting provider doesn't allow Unix shell access,
|
||||
you might have trouble getting everything to work.]
|
||||
|
||||
2. Unpack the Red files into the root of your web server document area.
|
||||
|
||||
- If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be
|
||||
|
||||
`git clone https://github.com/friendica/red.git mywebsite`
|
||||
|
||||
- and then you can pick up the latest changes at any time with
|
||||
|
||||
`git pull`
|
||||
|
||||
- make sure folder *view/tpl/smarty3* exists and is writable by webserver
|
||||
|
||||
`mkdir view/tpl/smarty3`
|
||||
|
||||
`chmod 777 view/tpl/smarty3`
|
||||
|
||||
- For installing addons
|
||||
|
||||
- First you should be **on** your website folder
|
||||
|
||||
`cd mywebsite`
|
||||
|
||||
- Then you should clone the addon repository (separtely)
|
||||
|
||||
`git clone https://github.com/friendica/red-addons.git addon`
|
||||
|
||||
- For keeping the addon tree updated, you should be on you addon tree and issue a git pull
|
||||
|
||||
`cd mywebsite/addon`
|
||||
|
||||
`git pull`
|
||||
|
||||
- If you copy the directory tree to your webserver, make sure
|
||||
that you also copy .htaccess - as "dot" files are often hidden
|
||||
and aren't normally copied.
|
||||
|
||||
|
||||
3. Create an empty database and note the access details (hostname, username, password, database name).
|
||||
|
||||
4. Visit your website with a web browser and follow the instructions. Please note any error messages and correct these before continuing.
|
||||
|
||||
5. *If* the automated installation fails for any reason, check the following:
|
||||
|
||||
- ".htconfig.php" exists ... If not, edit htconfig.php and change system settings. Rename
|
||||
to .htconfig.php
|
||||
- Database is populated. ... If not, import the contents of "database.sql" with phpmyadmin
|
||||
or mysql command line
|
||||
|
||||
6. At this point visit your website again, and register your personal account.
|
||||
Registration errors should all be recoverable automatically.
|
||||
If you get any *critical* failure at this point, it generally indicates the
|
||||
database was not installed correctly. You might wish to move/rename
|
||||
.htconfig.php to another name and empty (called 'dropping') the database
|
||||
tables, so that you can start fresh.
|
||||
|
||||
7. Set up a cron job or scheduled task to run the poller once every 15
|
||||
minutes in order to perform background processing. Example:
|
||||
|
||||
`cd /base/directory; /path/to/php include/poller.php`
|
||||
|
||||
Change "/base/directory", and "/path/to/php" as appropriate for your situation.
|
||||
|
||||
If you are using a Linux server, run "crontab -e" and add a line like the
|
||||
one shown, substituting for your unique paths and settings:
|
||||
|
||||
`*/15 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php`
|
||||
|
||||
You can generally find the location of PHP by executing "which php". If you
|
||||
have troubles with this section please contact your hosting provider for
|
||||
assistance. Red will not work correctly if you cannot perform this step.
|
@ -17,6 +17,17 @@ Red Matrix. Many will - but please review the requirements and confirm these
|
||||
with your hosting provider prior to installation. (And preferably before
|
||||
entering into a long-term contract.)
|
||||
|
||||
If you encounter installation issues, please let us know via the Github issue
|
||||
tracker (https://github.com/friendica/red/issues). Please be as clear as you
|
||||
can about your operating environment and provide as much detail as possible
|
||||
about any error messages you may see, so that we can prevent it from happening
|
||||
in the future. Due to the large variety of operating systems and PHP platforms
|
||||
in existence we may have only limited ability to debug your PHP installation or
|
||||
acquire any missing modules - but we will do our best to solve any general code
|
||||
issues.
|
||||
|
||||
|
||||
|
||||
Before you begin: Choose a domain name or subdomain name for your server.
|
||||
Put some thought into this - because changing it is currently not-supported.
|
||||
Things will break, and some of your friends may have difficulty communicating
|
||||
@ -52,6 +63,40 @@ directory/path component in the URL) is REQUIRED.
|
||||
that you also copy .htaccess - as "dot" files are often hidden
|
||||
and aren't normally copied.
|
||||
|
||||
- If you are able to do so, we recommend using git to clone the
|
||||
source repository rather than to use a packaged tar or zip file.
|
||||
This makes the software much easier to update. The Linux command
|
||||
to clone the repository into a directory "mywebsite" would be
|
||||
|
||||
git clone https://github.com/friendica/red.git mywebsite
|
||||
|
||||
- and then you can pick up the latest changes at any time with
|
||||
|
||||
git pull
|
||||
|
||||
- make sure folder *view/tpl/smarty3* exists and is writable by webserver
|
||||
|
||||
mkdir view/tpl/smarty3
|
||||
|
||||
chmod 777 view/tpl/smarty3
|
||||
|
||||
- For installing addons
|
||||
|
||||
- First you should be **on** your website folder
|
||||
|
||||
cd mywebsite
|
||||
|
||||
- Then you should clone the addon repository (separately)
|
||||
|
||||
git clone https://github.com/friendica/red-addons.git addon
|
||||
|
||||
- For keeping the addon tree updated, you should be on you addon tree and issue a git pull
|
||||
|
||||
cd mywebsite/addon
|
||||
|
||||
git pull
|
||||
|
||||
|
||||
3. Create an empty database and note the access details (hostname, username,
|
||||
password, database name).
|
||||
|
||||
@ -123,7 +168,7 @@ $a->config['system']['php_path'] = '/usr/local/php53/bin/php';
|
||||
|
||||
Check your database settings. It usually means your database could not
|
||||
be opened or accessed. If the database resides on the same machine, check that
|
||||
the database server name is "localhost".
|
||||
the database server name is the word "localhost".
|
||||
|
||||
#####################################################################
|
||||
- 500 Internal Error
|
||||
@ -167,7 +212,7 @@ configuration for your site. This will need to be changed to
|
||||
If you do not see the word "test", your .htaccess is working, but it is
|
||||
likely that mod-rewrite is not installed in your web server or is not working.
|
||||
|
||||
On most flavour of Linux,
|
||||
On most flavours of Linux,
|
||||
|
||||
% a2enmod rewrite
|
||||
% /etc/init.d/apache2 restart
|
||||
|
@ -136,7 +136,7 @@ CREATE TABLE IF NOT EXISTS `challenge` (
|
||||
`type` char(255) NOT NULL,
|
||||
`last_update` char(255) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `channel` (
|
||||
`channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@ -267,7 +267,7 @@ CREATE TABLE IF NOT EXISTS `event` (
|
||||
KEY `aid` (`aid`),
|
||||
KEY `event_hash` (`event_hash`),
|
||||
KEY `event_xchan` (`event_xchan`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@ -348,7 +348,7 @@ CREATE TABLE IF NOT EXISTS `group_member` (
|
||||
KEY `uid` (`uid`),
|
||||
KEY `gid` (`gid`),
|
||||
KEY `xchan` (`xchan`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `hook` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
@ -421,7 +421,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||
`owner_xchan` char(255) NOT NULL DEFAULT '',
|
||||
`author_xchan` char(255) NOT NULL DEFAULT '',
|
||||
`mimetype` char(255) NOT NULL DEFAULT '',
|
||||
`title` text NOT NULL DEFAULT '',
|
||||
`title` text NOT NULL,
|
||||
`body` mediumtext NOT NULL,
|
||||
`app` char(255) NOT NULL DEFAULT '',
|
||||
`lang` char(64) NOT NULL DEFAULT '',
|
||||
@ -493,7 +493,7 @@ CREATE TABLE IF NOT EXISTS `item_id` (
|
||||
KEY `sid` (`sid`),
|
||||
KEY `service` (`service`),
|
||||
KEY `iid` (`iid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mail` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@ -504,6 +504,7 @@ CREATE TABLE IF NOT EXISTS `mail` (
|
||||
`channel_id` int(10) unsigned NOT NULL,
|
||||
`title` text NOT NULL,
|
||||
`body` mediumtext NOT NULL,
|
||||
`attach` mediumtext NOT NULL,
|
||||
`mid` char(255) NOT NULL,
|
||||
`parent_mid` char(255) NOT NULL,
|
||||
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
@ -535,7 +536,7 @@ CREATE TABLE IF NOT EXISTS `menu` (
|
||||
PRIMARY KEY (`menu_id`),
|
||||
KEY `menu_channel_id` (`menu_channel_id`),
|
||||
KEY `menu_name` (`menu_name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `menu_item` (
|
||||
`mitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@ -550,10 +551,10 @@ CREATE TABLE IF NOT EXISTS `menu_item` (
|
||||
`mitem_menu_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`mitem_order` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`mitem_id`),
|
||||
KEY `mitem_flags` (`mitem_flags`),
|
||||
KEY `mitem_channel_id` (`mitem_channel_id`),
|
||||
KEY `mitem_menu_id` (`mitem_menu_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
KEY `mitem_menu_id` (`mitem_menu_id`),
|
||||
KEY `mitem_flags` (`mitem_flags`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `notify` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
@ -594,7 +595,7 @@ CREATE TABLE IF NOT EXISTS `obj` (
|
||||
KEY `obj_type` (`obj_type`),
|
||||
KEY `obj_channel` (`obj_channel`),
|
||||
KEY `obj_obj` (`obj_obj`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `outq` (
|
||||
`outq_hash` char(255) NOT NULL,
|
||||
@ -657,7 +658,7 @@ CREATE TABLE IF NOT EXISTS `photo` (
|
||||
KEY `album` (`album`),
|
||||
KEY `scale` (`scale`),
|
||||
KEY `profile` (`profile`),
|
||||
KEY `photo_flags` (`photo_flags`),
|
||||
KEY `photo_flags` (`photo_flags`),
|
||||
KEY `type` (`type`),
|
||||
KEY `aid` (`aid`),
|
||||
KEY `xchan` (`xchan`),
|
||||
@ -665,6 +666,29 @@ CREATE TABLE IF NOT EXISTS `photo` (
|
||||
KEY `resource_id` (`resource_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `poll` (
|
||||
`poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`poll_channel` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`poll_desc` text NOT NULL,
|
||||
`poll_flags` int(11) NOT NULL DEFAULT '0',
|
||||
`poll_votes` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`poll_id`),
|
||||
KEY `poll_channel` (`poll_channel`),
|
||||
KEY `poll_flags` (`poll_flags`),
|
||||
KEY `poll_votes` (`poll_votes`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `poll_elm` (
|
||||
`pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`pelm_poll` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`pelm_desc` text NOT NULL,
|
||||
`pelm_flags` int(11) NOT NULL DEFAULT '0',
|
||||
`pelm_result` float NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`pelm_id`),
|
||||
KEY `pelm_poll` (`pelm_poll`),
|
||||
KEY `pelm_result` (`pelm_result`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `profile` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`profile_guid` char(64) NOT NULL DEFAULT '',
|
||||
@ -675,7 +699,7 @@ CREATE TABLE IF NOT EXISTS `profile` (
|
||||
`hide_friends` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`name` char(255) NOT NULL,
|
||||
`pdesc` char(255) NOT NULL,
|
||||
`chandesc` text NOT NULL DEFAULT '',
|
||||
`chandesc` text NOT NULL,
|
||||
`dob` char(32) NOT NULL DEFAULT '0000-00-00',
|
||||
`dob_tz` char(255) NOT NULL DEFAULT 'UTC',
|
||||
`address` char(255) NOT NULL,
|
||||
@ -769,7 +793,7 @@ CREATE TABLE IF NOT EXISTS `register` (
|
||||
KEY `hash` (`hash`),
|
||||
KEY `created` (`created`),
|
||||
KEY `uid` (`uid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `session` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@ -841,7 +865,7 @@ CREATE TABLE IF NOT EXISTS `term` (
|
||||
KEY `imgurl` (`imgurl`),
|
||||
KEY `term_hash` (`term_hash`),
|
||||
KEY `parent_hash` (`parent_hash`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `tokens` (
|
||||
`id` varchar(40) NOT NULL,
|
||||
@ -876,7 +900,19 @@ CREATE TABLE IF NOT EXISTS `verify` (
|
||||
KEY `token` (`token`),
|
||||
KEY `meta` (`meta`),
|
||||
KEY `created` (`created`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `vote` (
|
||||
`vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`vote_poll` int(11) NOT NULL DEFAULT '0',
|
||||
`vote_element` int(11) NOT NULL DEFAULT '0',
|
||||
`vote_result` text NOT NULL,
|
||||
`vote_xchan` char(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`vote_id`),
|
||||
UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`),
|
||||
KEY `vote_poll` (`vote_poll`),
|
||||
KEY `vote_element` (`vote_element`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `xchan` (
|
||||
`xchan_hash` char(255) NOT NULL,
|
||||
@ -890,6 +926,8 @@ CREATE TABLE IF NOT EXISTS `xchan` (
|
||||
`xchan_addr` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_url` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_connurl` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_follow` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_connpage` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_name` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_network` char(255) NOT NULL DEFAULT '',
|
||||
`xchan_instance_url` char(255) NOT NULL DEFAULT '',
|
||||
@ -901,10 +939,12 @@ CREATE TABLE IF NOT EXISTS `xchan` (
|
||||
KEY `xchan_addr` (`xchan_addr`),
|
||||
KEY `xchan_name` (`xchan_name`),
|
||||
KEY `xchan_network` (`xchan_network`),
|
||||
KEY `xchan_instance_url` (`xchan_instance_url`),
|
||||
KEY `xchan_url` (`xchan_url`),
|
||||
KEY `xchan_flags` (`xchan_flags`),
|
||||
KEY `xchan_connurl` (`xchan_connurl`)
|
||||
KEY `xchan_connurl` (`xchan_connurl`),
|
||||
KEY `xchan_follow` (`xchan_follow`),
|
||||
KEY `xchan_connpage` (`xchan_connpage`),
|
||||
KEY `xchan_instance_url` (`xchan_instance_url`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `xconfig` (
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1059 );
|
||||
define( 'UPDATE_VERSION' , 1064 );
|
||||
|
||||
/**
|
||||
*
|
||||
@ -682,3 +682,71 @@ ADD INDEX ( `mitem_flags` ) ");
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1059() {
|
||||
$r = q("ALTER TABLE `mail` ADD `attach` MEDIUMTEXT NOT NULL DEFAULT '' AFTER `body` ");
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1060() {
|
||||
|
||||
$r = q("CREATE TABLE IF NOT EXISTS `vote` (
|
||||
`vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`vote_poll` int(11) NOT NULL DEFAULT '0',
|
||||
`vote_element` int(11) NOT NULL DEFAULT '0',
|
||||
`vote_result` text NOT NULL,
|
||||
`vote_xchan` char(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`vote_id`),
|
||||
UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
|
||||
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1061() {
|
||||
$r = q("ALTER TABLE `vote` ADD INDEX ( `vote_poll` ), ADD INDEX ( `vote_element` ) ");
|
||||
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1062() {
|
||||
$r1 = q("CREATE TABLE IF NOT EXISTS `poll` (
|
||||
`poll_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`poll_channel` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`poll_desc` TEXT NOT NULL DEFAULT '',
|
||||
`poll_flags` INT NOT NULL DEFAULT '0',
|
||||
`poll_votes` INT NOT NULL DEFAULT '0',
|
||||
KEY `poll_channel` (`poll_channel`),
|
||||
KEY `poll_flags` (`poll_flags`),
|
||||
KEY `poll_votes` (`poll_votes`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
|
||||
|
||||
$r2 = q("CREATE TABLE IF NOT EXISTS `poll_elm` (
|
||||
`pelm_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`pelm_poll` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`pelm_desc` TEXT NOT NULL DEFAULT '',
|
||||
`pelm_flags` INT NOT NULL DEFAULT '0',
|
||||
`pelm_result` FLOAT NOT NULL DEFAULT '0',
|
||||
KEY `pelm_poll` (`pelm_poll`),
|
||||
KEY `pelm_result` (`pelm_result`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
|
||||
|
||||
if($r1 && $r2)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1063() {
|
||||
$r = q("ALTER TABLE `xchan` ADD `xchan_follow` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_connurl` ,
|
||||
ADD `xchan_connpage` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_follow` ,
|
||||
ADD INDEX ( `xchan_follow` ), ADD INDEX ( `xchan_connpage`) ");
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user