├── .gitignore
├── 10_BeforeExternalData
├── BeforeExternalData.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ ├── Help.aspx
│ └── SharePointProjectItem.spdata
│ ├── RunOrientationAdd-in
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── Add-in.js
│ ├── Elements.xml
│ ├── OrientationStageRendering.js
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── 1_BeforeColumns
├── BeforeColumns.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ └── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ └── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
├── 2_BeforeContentType
├── BeforeContentType.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ └── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ └── Site Columns
│ ├── Division
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
├── 3_BeforeWebPart
├── BeforeWebPart.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ └── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ └── Site Columns
│ ├── Division
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
├── 4_BeforeWorkflow
├── BeforeWorkflow.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ └── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ └── Site Columns
│ ├── Division
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
├── 5_BeforePage
├── BeforePage.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── 6_BeforeClientRenderedControl
├── BeforeClientRenderedControl.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ ├── Help.aspx
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── 7_BeforeRibbon
├── BeforeRibbon.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ ├── Help.aspx
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── OrientationStageRendering.js
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── 8_BeforeJSOM
├── BeforeJSOM.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ ├── Help.aspx
│ └── SharePointProjectItem.spdata
│ ├── RunOrientationAdd-in
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── App.js
│ ├── Elements.xml
│ ├── OrientationStageRendering.js
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── 9_BeforeHostWebData
├── BeforeHostWebData.sln
└── EmployeeOrientation
│ ├── AppManifest.xml
│ ├── Content Types
│ └── NewEmployee
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Content
│ ├── App.css
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── EmployeeOrientation.csproj
│ ├── Features
│ └── NewEmployeeOrientationComponents
│ │ ├── NewEmployeeOrientationComponents.Template.xml
│ │ └── NewEmployeeOrientationComponents.feature
│ ├── Images
│ ├── AppIcon.png
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Lists
│ ├── NewEmployeeOrientation
│ │ ├── Elements.xml
│ │ ├── NewEmployeesInSeattle
│ │ │ ├── Elements.xml
│ │ │ └── SharePointProjectItem.spdata
│ │ ├── Schema.xml
│ │ └── SharePointProjectItem.spdata
│ ├── WorkflowHistoryList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── WorkflowTaskList
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ ├── Package
│ ├── Package.Template.xml
│ └── Package.package
│ ├── Pages
│ ├── Default.aspx
│ ├── Elements.xml
│ ├── Help.aspx
│ └── SharePointProjectItem.spdata
│ ├── RunOrientationAdd-in
│ ├── Elements.xml
│ └── SharePointProjectItem.spdata
│ ├── Scripts
│ ├── Add-in.js
│ ├── Elements.xml
│ ├── OrientationStageRendering.js
│ ├── SharePointProjectItem.spdata
│ └── _references.js
│ ├── Site Columns
│ ├── Division
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── OrientationStage
│ │ ├── Elements.xml
│ │ └── SharePointProjectItem.spdata
│ └── Workflows
│ └── HR_Intake
│ ├── SharePointProjectItem.spdata
│ └── Workflow.xaml
├── LICENSE.txt
└── README.md
/10_BeforeExternalData/BeforeExternalData.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */
2 |
3 | /* Place custom styles below */
4 |
5 | p {
6 | color: green;
7 | }
8 |
9 |
10 | /*
11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials
12 |
13 | Copyright (c) Microsoft Corporation
14 | All rights reserved.
15 |
16 | MIT License:
17 | Permission is hereby granted, free of charge, to any person obtaining
18 | a copy of this software and associated documentation files (the
19 | "Software"), to deal in the Software without restriction, including
20 | without limitation the rights to use, copy, modify, merge, publish,
21 | distribute, sublicense, and/or sell copies of the Software, and to
22 | permit persons to whom the Software is furnished to do so, subject to
23 | the following conditions:
24 |
25 | The above copyright notice and this permission notice shall be
26 | included in all copies or substantial portions of the Software.
27 |
28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 |
36 | */
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/10_BeforeExternalData/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/RunOrientationAdd-in/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
14 |
15 |
16 |
24 |
25 |
26 |
27 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/RunOrientationAdd-in/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10_BeforeExternalData/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1_BeforeColumns/BeforeColumns.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Place custom styles below */
2 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/1_BeforeColumns/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Pages/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/1_BeforeColumns/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/2_BeforeContentType/BeforeContentType.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Place custom styles below */
2 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/2_BeforeContentType/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Pages/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/2_BeforeContentType/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/BeforeWebPart.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Place custom styles below */
2 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/3_BeforeWebPart/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Pages/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/3_BeforeWebPart/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/BeforeWorkflow.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Place custom styles below */
2 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/4_BeforeWorkflow/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/4_BeforeWorkflow/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/BeforePage.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Place custom styles below */
2 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/5_BeforePage/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5_BeforePage/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/BeforeClientRenderedControl.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */
2 |
3 | /* Place custom styles below */
4 |
5 | p {
6 | color: green;
7 | }
8 |
9 |
10 | /*
11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials
12 |
13 | Copyright (c) Microsoft Corporation
14 | All rights reserved.
15 |
16 | MIT License:
17 | Permission is hereby granted, free of charge, to any person obtaining
18 | a copy of this software and associated documentation files (the
19 | "Software"), to deal in the Software without restriction, including
20 | without limitation the rights to use, copy, modify, merge, publish,
21 | distribute, sublicense, and/or sell copies of the Software, and to
22 | permit persons to whom the Software is furnished to do so, subject to
23 | the following conditions:
24 |
25 | The above copyright notice and this permission notice shall be
26 | included in all copies or substantial portions of the Software.
27 |
28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 |
36 | */
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/6_BeforeClientRenderedControl/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6_BeforeClientRenderedControl/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/BeforeRibbon.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */
2 |
3 | /* Place custom styles below */
4 |
5 | p {
6 | color: green;
7 | }
8 |
9 |
10 | /*
11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials
12 |
13 | Copyright (c) Microsoft Corporation
14 | All rights reserved.
15 |
16 | MIT License:
17 | Permission is hereby granted, free of charge, to any person obtaining
18 | a copy of this software and associated documentation files (the
19 | "Software"), to deal in the Software without restriction, including
20 | without limitation the rights to use, copy, modify, merge, publish,
21 | distribute, sublicense, and/or sell copies of the Software, and to
22 | permit persons to whom the Software is furnished to do so, subject to
23 | the following conditions:
24 |
25 | The above copyright notice and this permission notice shall be
26 | included in all copies or substantial portions of the Software.
27 |
28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 |
36 | */
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/7_BeforeRibbon/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7_BeforeRibbon/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/BeforeJSOM.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */
2 |
3 | /* Place custom styles below */
4 |
5 | p {
6 | color: green;
7 | }
8 |
9 |
10 | /*
11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials
12 |
13 | Copyright (c) Microsoft Corporation
14 | All rights reserved.
15 |
16 | MIT License:
17 | Permission is hereby granted, free of charge, to any person obtaining
18 | a copy of this software and associated documentation files (the
19 | "Software"), to deal in the Software without restriction, including
20 | without limitation the rights to use, copy, modify, merge, publish,
21 | distribute, sublicense, and/or sell copies of the Software, and to
22 | permit persons to whom the Software is furnished to do so, subject to
23 | the following conditions:
24 |
25 | The above copyright notice and this permission notice shall be
26 | included in all copies or substantial portions of the Software.
27 |
28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 |
36 | */
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/8_BeforeJSOM/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/RunOrientationAdd-in/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
14 |
15 |
16 |
24 |
25 |
26 |
27 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/RunOrientationAdd-in/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Scripts/App.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/8_BeforeJSOM/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/BeforeHostWebData.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.31101.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | EndGlobal
25 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Content/App.css:
--------------------------------------------------------------------------------
1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */
2 |
3 | /* Place custom styles below */
4 |
5 | p {
6 | color: green;
7 | }
8 |
9 |
10 | /*
11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials
12 |
13 | Copyright (c) Microsoft Corporation
14 | All rights reserved.
15 |
16 | MIT License:
17 | Permission is hereby granted, free of charge, to any person obtaining
18 | a copy of this software and associated documentation files (the
19 | "Software"), to deal in the Software without restriction, including
20 | without limitation the rights to use, copy, modify, merge, publish,
21 | distribute, sublicense, and/or sell copies of the Software, and to
22 | permit persons to whom the Software is furnished to do so, subject to
23 | the following conditions:
24 |
25 | The above copyright notice and this permission notice shall be
26 | included in all copies or substantial portions of the Software.
27 |
28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 |
36 | */
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Content/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Content/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Images/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/9_BeforeHostWebData/EmployeeOrientation/Images/AppIcon.png
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Images/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Images/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Package/Package.Template.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Package/Package.package:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Pages/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/RunOrientationAdd-in/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
14 |
15 |
16 |
24 |
25 |
26 |
27 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/RunOrientationAdd-in/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Scripts/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Scripts/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 | ///
8 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Site Columns/Division/Elements.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Site Columns/Division/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/9_BeforeHostWebData/EmployeeOrientation/Site Columns/OrientationStage/SharePointProjectItem.spdata:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | MIT License:
2 | Permission is hereby granted, free of charge, to any person obtaining
3 | a copy of this software and associated documentation files (the
4 | "Software"), to deal in the Software without restriction, including
5 | without limitation the rights to use, copy, modify, merge, publish,
6 | distribute, sublicense, and/or sell copies of the Software, and to
7 | permit persons to whom the Software is furnished to do so, subject to
8 | the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be
11 | included in all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
17 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
19 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------