예제 #1
0
        private void ExportLabels(Site site, bool includeSubSites)
        {
            _labelProvider.ExportLabelsToDisk(site);

            if (includeSubSites)
            {
                foreach (var sub in Providers.SiteProvider.ChildSites(site))
                {
                    ExportLabels(sub, includeSubSites);
                }
            }
        }
예제 #2
0
파일: LabelProvider.cs 프로젝트: dancky/CMS
 public void ExportLabelsToDisk(Site site)
 {
     inner.ExportLabelsToDisk(site);
 }