This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cffunction name="onAfterFolderFlipBookSave" output="true"> | |
<cfargument name="event"> | |
<cfargument name="$"> | |
<!--- // Object being Saved // ---> | |
<cfset thisBean = arguments.$.event('activeBean') /> | |
<!--- // Construct Paths and FileName // ---> | |
<cfset fbCache = "#$.globalConfig('assetpath')#/#$.siteConfig('siteid')#/cache/file" /> | |
<cfset fbPDF = "#fbCache#/#thisBean.getValue('FILEID')#.pdf" /> | |
<cfset fbTemp = "#$.globalConfig('assetdir')#/#$.siteConfig('siteid')#/cache/temp" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Web.UI.WebControls.WebParts; | |
using System.Web.UI.WebControls; | |
using System.Web.UI; | |
using Microsoft.SharePoint; | |
namespace QuickLinks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
using System.Security.Permissions; | |
using Microsoft.SharePoint; | |
using Microsoft.SharePoint.Security; | |
using Microsoft.SharePoint.Administration; | |
namespace AccessRequest.Features.AccessRequestFeature | |
{ | |
[Guid("c7482d83-8a04-4aa0-95e6-bf629805ecb1")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Assembly Name="Microsoft.SharePoint.ApplicationPages, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%> | |
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %> | |
<%@ Import Namespace="System" %> | |
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Import Namespace="Microsoft.SharePoint" %> | |
<%@ Import Namespace="System.Web" %> | |
<%@ Import Namespace="Microsoft.SharePoint.Administration" %> | |
<%@ Import Namespace="System.Collections.Specialized" %> | |
<%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> |