コード例 #1
0
 public static string GetRedirectUrl(string type)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", type }
     }));
 }
コード例 #2
0
 public static string GetCreateSiteUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCreateService), new NameValueCollection
     {
         { "type", TypeCreateSite }
     }));
 }
コード例 #3
0
 public static string GetPluginDownloadUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypePluginDownload }
     }));
 }
コード例 #4
0
 public static string GetSiteTemplateUnZipUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeSiteTemplateUnZip }
     }));
 }
コード例 #5
0
 public static string GetGetLoadingChannelsUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeGetLoadingChannels }
     }));
 }
コード例 #6
0
 public static string GetCountArrayUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeGetCountArray }
     }));
 }
コード例 #7
0
ファイル: AjaxWcmService.cs プロジェクト: skotbenben/cms
 public static string GetLoadingGovPublicCategoriesUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxWcmService), new NameValueCollection
     {
         { "type", TypeGetLoadingGovPublicCategories }
     }));
 }
コード例 #8
0
 public static string GetRecoveryUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxBackupService), new NameValueCollection
     {
         { "type", TypeRecovery }
     }));
 }
コード例 #9
0
 public static string GetLoadingAreasUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxSystemService), new NameValueCollection
     {
         { "type", TypeGetLoadingAreas }
     }));
 }
コード例 #10
0
ファイル: AjaxGatherService.cs プロジェクト: yankaics/cms-1
 public static string GetGatherFileUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxGatherService), new NameValueCollection
     {
         { "type", TypeGatherFile }
     }));
 }
コード例 #11
0
 public static string GetTagsUrl(int siteId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", TypeGetTags },
         { "siteId", siteId.ToString() }
     }));
 }
コード例 #12
0
 public static string GetTagsUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", TypeGetTags },
         { "publishmentSystemID", publishmentSystemId.ToString() }
     }));
 }
コード例 #13
0
ファイル: AjaxUploadService.cs プロジェクト: yankaics/cms-1
 public static string GetUploadWordMultipleUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "publishmentSystemID", publishmentSystemId.ToString() },
         { "isWordSwfUpload", true.ToString() }
     }));
 }
コード例 #14
0
ファイル: AjaxUploadService.cs プロジェクト: yankaics/cms-1
 public static string GetContentPhotoUploadSingleUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "publishmentSystemID", publishmentSystemId.ToString() },
         { "isContentPhoto", true.ToString() }
     }));
 }
コード例 #15
0
 public static string GetContentPhotoUploadMultipleUrl(int siteId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "siteID", siteId.ToString() },
         { "isContentPhotoSwfUpload", true.ToString() }
     }));
 }