help_MenuFolder

This function returns the location inside the assets forlder where we store TiddlyWiki files that detail help for menu-items. The handler is part of the lib_Help library. Browse related handlers using the tags: help, menu, folder, and find the function here on github

Handler: help_MenuFolder() OS: all Platforms: all Type: function

This function returns a path to the local folder on your local system. You can see the result of this on the Menu Tool Index page.

# Todo Write documentation for Menu Help, and think agian and confirm the naming and location of menu-help related elements.

# Where

File: lib_Help.livecodescript Hkey: F help_MenuFolder Kind: library Path: libraries/lib_Help.livecodescript Project: lcw_Help Script: stack "lib_Help"

# Code

digraph "default_header" { graph [ clusterrank="true" ]; subgraph "PF" { node []; n5 [label="_ConstructModelDataFile" URL="PF+_ConstructModelDataFile+of+stack+%27model_LCW%27"]; } subgraph "M" { node [fillcolor="Orange", style="filled", color="Red"]; n16 [label="text_AddTrailing" URL="M+text_AddTrailing+of+stack+%27lib_Encoding%27"]; n10 [label="file_AddHome" URL="M+file_AddHome+of+stack+%27lib_Files%27"]; n8 [label="folder_CreateNested" URL="M+folder_CreateNested+of+stack+%27lib_LCW%27"]; } subgraph "G" { node [fillcolor="grey50", style="filled", color="white"]; n17 [label="model_Array" URL="G+model_Array+of+stack+%27model_Library%27"]; n18 [label="model_DataFile" URL="G+model_DataFile+of+stack+%27model_Library%27"]; n19 [label="stack_Folder" URL="G+stack_Folder+of+stack+%27lib_LCW%27"]; } subgraph "C" { node [fillcolor="LightBlue", style="filled", color="Blue"]; n7 [label="text_AddTrailing" URL="C+text_AddTrailing+of+stack+%27lib_LCW%27"]; n22 [label="file_StripHome" URL="C+file_StripHome+of+stack+%27lib_Files%27"]; } subgraph "F" { node [fillcolor="GreenYellow", style="filled", color="Green4"]; n12 [label="help_MenuFolder" URL="F+help_MenuFolder+of+stack+%27lib_Help%27"]; n3 [label="model_GetDataFile" URL="F+model_GetDataFile+of+stack+%27model_LCW%27"]; n2 [label="json_ToArray" URL="F+json_ToArray+of+stack+%27lib_LCW%27"]; n11 [label="wikiGarden_GetModel" URL="F+wikiGarden_GetModel+of+stack+%27model_WikiGarden%27"]; n14 [label="help_TiddlyFolder" URL="F+help_TiddlyFolder+of+stack+%27lib_Help%27"]; n13 [label="help_MenuDomain" URL="F+help_MenuDomain+of+stack+%27lib_Help%27"]; n6 [label="folder_AddShort" URL="F+folder_AddShort+of+stack+%27lib_LCW%27"]; n4 [label="model_GetDataFolder" URL="F+model_GetDataFolder+of+stack+%27model_LCW%27"]; n1 [label="array_FromFile" URL="F+array_FromFile+of+stack+%27lib_LCW%27"]; n9 [label="wikiFarm_GetDefaultFolder" URL="F+wikiFarm_GetDefaultFolder+of+stack+%27lib_WikiFolder%27"]; n15 [label="platform_LivecodeDomain" URL="F+platform_LivecodeDomain+of+stack+%27model_Platform%27"]; n20 [label="wikiFolder_ConstructAssets" URL="F+wikiFolder_ConstructAssets+of+stack+%27lib_WikiFolder%27"]; n21 [label="wikiFolder_FromRouter" URL="F+wikiFolder_FromRouter+of+stack+%27lib_WikiFolder%27"]; n23 [label="wikiFolder_ConstructFromFarm" URL="F+wikiFolder_ConstructFromFarm+of+stack+%27lib_WikiFolder%27"]; n24 [label="wikiGarden_GetDomainData" URL="F+wikiGarden_GetDomainData+of+stack+%27lib_WikiGarden%27"]; n25 [label="ecoData_GetFarmFolder" URL="F+ecoData_GetFarmFolder+of+stack+%27model_WikiGarden%27"]; n26 [label="ecoData_Get" URL="F+ecoData_Get+of+stack+%27model_WikiGarden%27"]; } subgraph cluster1 { label="stack \"lib_Encoding\""; style=filled; color=grey60; fillcolor=grey60; n16 } subgraph cluster2 { label="stack \"lib_Files\""; style=filled; color=grey60; fillcolor=grey60; n10; n22 } subgraph cluster3 { label="stack \"lib_Help\""; style=filled; color=grey60; fillcolor=grey60; n12; n14; n13 } subgraph cluster4 { label="stack \"lib_LCW\""; style=filled; color=grey60; fillcolor=grey60; n2; n7; n6; n1; n8; n19 } subgraph cluster5 { label="stack \"lib_WikiFolder\""; style=filled; color=grey60; fillcolor=grey60; n9; n20; n21; n23 } subgraph cluster6 { label="stack \"lib_WikiGarden\""; style=filled; color=grey60; fillcolor=grey60; n24 } subgraph cluster7 { label="stack \"model_LCW\""; style=filled; color=grey60; fillcolor=grey60; n3; n5; n4 } subgraph cluster8 { label="stack \"model_Library\""; style=filled; color=grey60; fillcolor=grey60; n17; n18 } subgraph cluster9 { label="stack \"model_Platform\""; style=filled; color=grey60; fillcolor=grey60; n15 } subgraph cluster10 { label="stack \"model_WikiGarden\""; style=filled; color=grey60; fillcolor=grey60; n11; n25; n26 } n6 -> n7; n2 -> n2; n14 -> n20; n14 -> n8; n21 -> n24; n21 -> n23; n3 -> n5; n3 -> n4; n8 -> n7; n20 -> n16; n20 -> n21; n12 -> n13; n12 -> n12; n12 -> n14; n9 -> n10; n9 -> n11; n11 -> n17; n23 -> n9; n23 -> n25; n17 -> n1; n17 -> n18; n10 -> n22; n13 -> n15; n4 -> n6; n25 -> n10; n25 -> n26; n15 -> n16; n1 -> n2; n18 -> n3; n18 -> n19; }

function help_MenuFolder put help_MenuDomain() into mDomain put help_TiddlyFolder (mDomain, "menus") into mFolder return mFolder end help_MenuFolder

# Depends Here is a list of stacks containing dependencies upon which this handler depends: - model_LCW, lib_WikiGarden, model_WikiGarden, lib_LCW, model_Platform, lib_Files, model_Library, lib_Encoding, lib_WikiFolder

# See also - Fedwiki Tools