using System; using System.Collections.Generic; using System.Linq; using System.Text; using ScrewTurn.Wiki.PluginFramework; namespace ScrewTurn.Wiki { /// /// Implements a base class for local file-based data providers. /// public abstract class ProviderBase { /// /// Gets the data directory. /// /// The host object. /// The data directory. protected string GetDataDirectory(IHostV30 host) { return host.GetSettingValue(SettingName.PublicDirectory); } } }