32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.CustomNavigationCommon
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string IS_CONDO_PROPERTY_KEY = "IsCondo";
|
|
public const string SESSION_PREVENT_ID_CHANGING_KEY = "{76c0a16b-5976-44e5-8f92-2f17459be22f}";
|
|
public const string ATTR_CHANGEABLE_SITES = "navigationcanbeonlycustomizedonsites";
|
|
public const string ATTR_EXCLUDED_FOLDERS = "excludedfolders";
|
|
public const string ATTR_EXCLUDED_LISTS = "excludedliststemplates";
|
|
public const string ATTR_ENABLED = "enabled";
|
|
|
|
public const string QUERY_STRING_ROOT_FOLDER = "RootFolder";
|
|
|
|
public const string ATTR_LIST_SEPARATOR = ";";
|
|
public const string CACHE_SESSION_KEY = "{EA6A7EF9-C3E0-4531-899F-CF13BC38179E}";
|
|
|
|
public const string SIMULATING_PROVIDER_NAME = "CombinedNavSiteMapProvider";
|
|
|
|
public const string TAG_ROOT = "root";
|
|
public const string TAG_NODE = "node";
|
|
public const string ATTR_PATH = "path";
|
|
public const string ATTR_URL = "url";
|
|
public const string ATTR_TITLE = "title";
|
|
|
|
public const int INVALID_LIST_TEMPLATE = -1;
|
|
}
|
|
} |