SlideShare ist ein Scribd-Unternehmen logo
1 von 107
Orchard
MODULES
GROWING YOUR
“

We wanted a modern CMS based on ASP.NET
MVC. We also wanted an extremely extensible
platform similar to what PHP has with Drupal.
But most importantly we wanted to build
better bridges between our team at Microsoft
and the open-source community.

”

Betrand Le Roy, Creator of Orchard
Content
FUNDAMENTALS
ContentFields
lly!”
y be
in m
Get
“
es ! ”
h no
“O

ContentFields
contain Data
ContentParts
eye
cary
s
arp
ig s h
b
eeth
t

ContentParts

ean!
lly m
r ea

have Behavior
ContentTypes
ContentTypes
are Consumable by Users
Types

Parts

Fields

Data
Types
Fields

Data
each
is an
a

content item
instance of
content type
Module/Feature
Module/Feature
features extend the CMS
modules contain and distribute
Module
FUNDAMENTALS
RecordsAndParts
records are Data Models
parts are View Models
HandlersAndDrivers
handlers give behavior to the code
drivers are are specialized controllers
ShapeTemplates
DependencyInjection
Controllers
ModuleManifest
Manifest [Module|Theme]

“

A manifest stores metadata that Orchard
uses to describe modules and themes to the
system, such as name, version, description,
author, and tags.

”

docs.orchardproject.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Name: AntiSpam
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.7.2
OrchardVersion: 1.7.2
Description: Provides anti-spam services to protect your
Features:
Orchard.AntiSpam:
Name: Anti-Spam
Description: Provides anti-spam services to prot
Category: Security
Dependencies: Orchard.Tokens, Orchard.jQuery
Akismet.Filter:
Name: Akismet Anti-Spam Filter
Description: Provides an anti-spam filter based
Category: Security
Dependencies: Orchard.AntiSpam
Orchard
EXECUTABLE
WebSiteAndConsoleApp
“

The Orchard command interpreter supports
running a few built-in commands as well as
specific commands from enabled features of
an Orchard installation.

”

Orchard.exe
C:OrchardsrcOrchard.Webbin> Orchard.exe_
C:OrchardsrcOrchard.Webbin> Orchard.exe
Initializing Orchard session. (This might take a few
seconds...)
Type "?" for help, "exit" to exit, "cls" to clear screen
orchard> _
orchard> call me "Rock God"
Error executing command "call me Rock God"
---------------------------------------------------------No command found matching arguments "call me Rock God".
Commands available: site setting set baseurl, autoroute
create, theme list, theme activate, widget create, layer
create, menuitem create, menu create, blog create, blog
import, ...
Module
DEVELOPMENT
1
#
p
te
S
od
C

io n
at
ner
Ge
e
CodeGeneration
orchard> feature enable Orchard.CodeGeneration_
orchard> feature enable Orchard.CodeGeneration
Enabling features Orchard.CodeGeneration
Code Generation was enabled
orchard> _
orchard> feature enable Orchard.CodeGeneration
Enabling features Orchard.CodeGeneration
Code Generation was enabled
orchard> codegen module SlideShare /IncludeInSolution:true_
orchard> feature enable Orchard.CodeGeneration
Enabling features Orchard.CodeGeneration
Code Generation was enabled
orchard> codegen module SlideShare /IncludeInSolution:true
Creating Module SlideShare
Module SlideShare created successfully
orchard> _
ReadyGo
UpdateManifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Name: SlideShare
AntiForgery: enabled
Author: Jay Harris, Arana Software
Website: http://www.aranasoft.com
Version: 1.0
OrchardVersion: 1.0
Description: Provide SlideShare presentations as an atta
Features:
SlideShare:
Description: Provide SlideShare presentations as an
Category: Social
2
#
p
te
S
ec
R

r ts
Pa
s&
rd
o
RecordsAndParts
AddNewClass
1
2
3
4 namespace SlideShare.Models {
public class SlideShareRecord {
5
6
7
}
8
9 }
10
1 using Orchard.ContentManagement.Records;
2
3
4 namespace SlideShare.Models {
public class SlideShareRecord : ContentPartRecord {
5
6
7
}
8
9 }
10
using Orchard.ContentManagement.Records;
1
2
3
4 namespace SlideShare.Models {
public class SlideShareRecord : ContentPartRecord {
5
public virtual string SlideShareId { get; set; }
6
public virtual int? StartFromSlide { get; set; }
7
}
8
9 }
10
se
U

ce
spa
me
Na

S
EL
D
O or
M
S
D
R
O
C
E
R
ies
rt
pe
ro
kP
ar
M

L
A
U
T
IR
V
ur
Yo
nd
Mi

S
S
LA
C
E
S
A
B
1 using Orchard.ContentManagement.Records;
2
3
4 namespace SlideShare.Models {
public class SlideShareRecord : ContentPartRecord {
5
public virtual string SlideShareId { get; set; }
6
public virtual int? StartFromSlide { get; set; }
7
}
8
9 }
10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

using Orchard.ContentManagement;
using Orchard.ContentManagement.Records;
namespace SlideShare.Models {
public class SlideShareRecord : ContentPartRecord {
public virtual string SlideShareId { get; set; }
public virtual int? StartFromSlide { get; set; }
}
public class SlideSharePart :
ContentPart<SlideShareRecord> {
}
}
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

public class SlideSharePart :
ContentPart<SlideShareRecord> {
public string SlideShareId {
get { return Record.SlideShareId; }
set { Record.SlideShareId = value; }
}
[Range(1, 20)]
public int? StartFromSlide {
get { return Record.StartFromSlide; }
set { Record.StartFromSlide = value; }
}
}
le
i
p
m
o
C

i ng
ed
oce
Pr
ore
ef
B
3
#
p
te
S
Da

io n
at
i gr
aM
t
orchard> codegen datamigration SlideShare_
orchard> codegen datamigration SlideShare
Creating Data Migration for SlideShare
Data migration created successfully in Module SlideShare
orchard> _
DataMigration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

using System.Data;
using Orchard.Data.Migration;
namespace SlideShare {
public class Migrations : DataMigrationImpl {
public int Create() {
// Creating table SlideShareRecord
SchemaBuilder.CreateTable("SlideShareRecord",
table => table
!!!!
.ContentPartRecord()
!!!!
.Column("SlideShareId", DbType.String)
!!!!
.Column("StartFromSlide", DbType.Int32)
);
return 1;
}
}
}
11
12 !!!!
13 !!!!

// column methods can use generic types...
.Column<string>("SlideShareId")
.Column<int>("StartFromSlide")

11
12 !!!!
13 !!!!

// or they can use a DbType argument.
.Column("SlideShareId", DbType.String)
.Column("StartFromSlide", DbType.Int32)
// either way. just not both.
5
6

public class Migrations : DataMigrationImpl {
public int Create() {
// The ‘return’ is for versioning
return 1;

14
15
16

}
public int UpdateFrom1() {
// Do some data migrations
return 2;
}
public int UpdateFrom2() {
// More data migrations
return 3;
}

25
26
27
33
34
35

}
Attachable [Content Part]

“

Indicates if administrators can attach the
Content Part to any Content Type, or if the
Part is limited only to Types explicitly
specified by the Module.

”
1
2
3
4
5
6
7
8

using
using
using
using
using

System.Data;
Orchard.ContentManagement.MetaData;
Orchard.Core.Contents.Extensions;
Orchard.Data.Migration;
SlideShare.Models;

namespace SlideShare {
public class Migrations : DataMigrationImpl {

public int UpdateFrom1() {
17
ContentDefinitionManager.AlterPartDefinition(
18
"SlideSharePart", cfg => cfg.Attachable());
19
return 2;
20
}
21
}
22
23 }
24
1
2
3
4
5
6
7
8

using
using
using
using
using

System.Data;
Orchard.ContentManagement.MetaData;
Orchard.Core.Contents.Extensions;
Orchard.Data.Migration;
SlideShare.Models;

namespace SlideShare {
public class Migrations : DataMigrationImpl {

public int UpdateFrom1() {
17
ContentDefinitionManager.AlterPartDefinition(
18
typeof(SlideSharePart).Name, cfg => cfg.Attachable(
19
return 2;
20
}
21
}
22
23 }
24
4
#
p
te
S
and
H

ers
r iv
&D
ers
l
CreateHandler
Part Handlers

“

Most Handlers will be very simple behavior
managers. Often, the only behavior they will
have to specify is how data is to be stored.

”
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

using SlideShare.Models;
using Orchard.ContentManagement.Handlers;
using Orchard.Data;
namespace SlideShare.Handlers {
public class SlideShareHandler : ContentHandler {
public SlideShareHandler(
IRepository<SlideShareRecord> repository)
{
Filters.Add(StorageFilter.For(repository));
}
}
}
CreateDriver
1
2
3
4
5
6
7
8
9
10
11
12
13

using
using
using
using

System;
Orchard.ContentManagement;
Orchard.ContentManagement.Drivers;
SlideShare.Models;

namespace SlideShare.Drivers {
public class SlideShareDriver :
ContentPartDriver<SlideSharePart> {
}
}
10
11
12
13
14
15
16
17
18
19
20
21

protected override DriverResult Display(
SlideSharePart part,
string displayType,
dynamic shapeHelper) {
return ContentShape("Parts_SlideShare",
() => shapeHelper.Parts_SlideShare(
SlideShareId: part.SlideShareId,
StartFromSlide: part.StartFromSlide
)
);
}
23
24
25
26
27
28
29
30
31
32
33
34
35

//GET
protected override DriverResult Editor(
SlideSharePart part,
dynamic shapeHelper) {
return ContentShape("Parts_SlideShare_Edit",
() => shapeHelper.EditorTemplate(
TemplateName: "Parts/SlideShare",
Model: part,
Prefix: Prefix
)
);
}
37
38
39
40
41
42
43
44
45

//POST
protected override DriverResult Editor(
SlideSharePart part,
IUpdateModel updater,
dynamic shapeHelper) {
updater.TryUpdateModel(part, Prefix, null, null);
return Editor(part, shapeHelper);
}
5
#
p
te
S
ap
Sh

tes
pl a
Tem
e
DisplayTemplate
ur
Yo
nd
Mi

V

S
H
T
A
P
W
IE
10
11
12
13
14
15
16
17
18
19
20
21

protected override DriverResult Display(
SlideSharePart part,
string displayType,
dynamic shapeHelper)
{
return ContentShape("Parts_SlideShare",
() => shapeHelper.Parts_SlideShare(
SlideShareId: part.SlideShareId,
StartFromSlide: part.StartFromSlide
)
);
}
“Parts_SlideShare”
translates to

Views/Parts/SlideShare.cshtml
1
2
3
4
5
6
7
8
9
10

<iframe src="http://www.slideshare.net/slideshow/
embed_code/13888742?startSlide=8"
width="427" height="356" frameborder="0"
marginwidth="0" marginheight="0"
scrolling="no" allowfullscreen
style="border: 1px solid #CCC; border-width: 1px 1px
0; margin-bottom: 5px">
</iframe>
1 @if(!string.IsNullOrWhiteSpace(Model.SlideShareId as
string))
2 {
<iframe src="http://www.slideshare.net/slideshow/
3
embed_code/13888742?startSlide=8"
width="427" height="356" frameborder="0"
4
marginwidth="0" marginheight="0"
5
scrolling="no" allowfullscreen
6
style="border: 1px solid #CCC; border-width: 1px 1px
7
0; margin-bottom: 5px">
</iframe>
8
9 }
1 @if(!string.IsNullOrWhiteSpace(Model.SlideShareId as
string))
2 {
var startSlide = Model.StartFromSlide as int?;
3
var startSlideQS = startSlide.HasValue
4
? string.Format("startSlide={0}", startSlide.Value)
5
: string.Empty;
6
7
var slideShareUrl = string.Format(
8
"http://www.slideshare.net/slideshow/embed_code/
9
{0}?{1}",
Model.SlideShareId,
10
startSlideQS);
11
12
<iframe src="@slideShareUrl"
13
width="427" height="356" frameborder="0"
14
marginwidth="0" marginheight="0"
15
scrolling="no" allowfullscreen
16
EditorTemplate
23
24
25
26
27
28
29
30
31
32
33
34
35

//GET
protected override DriverResult Editor(
SlideSharePart part,
dynamic shapeHelper)
{
return ContentShape("Parts_SlideShare_Edit",
() => shapeHelper.EditorTemplate(
TemplateName: "Parts/SlideShare",
Model: part,
Prefix: Prefix
)
);
}
“Parts/SlideShare”
translates to

Views/EditorTemplates/
Parts/SlideShare.cshtml
1 @model SlideShare.Models.SlideSharePart
2 <fieldset>
<legend>SlideShare Fields</legend>
3
<div class="editor-label">
4
@Html.LabelFor(m => m.SlideShareId)
5
</div>
6
<div class="editor-field">
7
@Html.TextBoxFor(m => m.SlideShareId)
8
@Html.ValidationMessageFor(m => m.SlideShareId)
9
</div>
10
11 </fieldset>
1 @model SlideShare.Models.SlideSharePart
2 <fieldset>
<legend>SlideShare Fields</legend>
3
<div class="editor-label">
4
@Html.LabelFor(m => m.SlideShareId)
5
</div>
6
<div class="editor-field">
7
@Html.TextBoxFor(m => m.SlideShareId)
8
@Html.ValidationMessageFor(m => m.SlideShareId)
9
</div>
10
<div class="editor-label">
11
@Html.LabelFor(m => m.StartFromSlide)
12
</div>
13
<div class="editor-field">
14
@Html.TextBoxFor(m => m.StartFromSlide)
15
@Html.ValidationMessageFor(m => m.StartFromSlide)
16
</div>
17
18 </fieldset>
ShapePlacement
1 <Placement>
<Place Parts_SlideShare="Content:10" />
2
<Place Parts_SlideShare_Edit="Content:8" />
3
4 </Placement>
5
6
7
8
9
10
11
12
13
14
15
16
17
18
te
ra
b
le
e
C
EnableFeature
AddContentDone
Module
DISTRIBUTION
OrchardPackaging
orchard> feature enable Orchard.Packaging
Enabling features Orchard.Packaging
Packaging was enabled
orchard> _
orchard> feature enable Orchard.Packaging
Enabling features Orchard.Packaging
Packaging was enabled
orchard> package create SlideShare C:Code_
orchard> feature enable Orchard.Packaging
Enabling features Orchard.Packaging
Packaging was enabled
orchard> package create SlideShare C:Code
Package "C:CodeOrchard.Module.SlideShare.1.0.nupkg"
successfully created
orchard> _
“

”

...you’ll be able to achieve all kinds of
glory and fame.
orchardproject.net
Profit
github.com/aranasoft
bit.ly/growingOrchard
“

”

...you’ll be able to achieve all kinds of
glory and fame.
orchardproject.net
jay harris

P R E S I D E N T

jay@aranasoft.com
#growingOrchard
@jayharris
Thanks

Weitere ähnliche Inhalte

Was ist angesagt?

Hibernate complete notes_by_sekhar_sir_javabynatara_j
Hibernate complete notes_by_sekhar_sir_javabynatara_jHibernate complete notes_by_sekhar_sir_javabynatara_j
Hibernate complete notes_by_sekhar_sir_javabynatara_jSatya Johnny
 
Tumbleweed intro
Tumbleweed introTumbleweed intro
Tumbleweed introRich Helton
 
Spring Web Service, Spring JMS, Eclipse & Maven tutorials
Spring Web Service, Spring JMS, Eclipse & Maven tutorialsSpring Web Service, Spring JMS, Eclipse & Maven tutorials
Spring Web Service, Spring JMS, Eclipse & Maven tutorialsRaghavan Mohan
 
Ruby On Rails Tutorial
Ruby On Rails TutorialRuby On Rails Tutorial
Ruby On Rails Tutorialsunniboy
 
Leverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherLeverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherEdureka!
 
Part 7 packaging and deployment
Part 7 packaging and deploymentPart 7 packaging and deployment
Part 7 packaging and deploymenttechbed
 
3) web development
3) web development3) web development
3) web developmenttechbed
 
Lab 5a) create a struts application
Lab 5a) create a struts applicationLab 5a) create a struts application
Lab 5a) create a struts applicationtechbed
 
Ee java lab assignment 4
Ee java lab assignment 4Ee java lab assignment 4
Ee java lab assignment 4Kuntal Bhowmick
 
Lessons learned from upgrading Thymeleaf
Lessons learned from upgrading ThymeleafLessons learned from upgrading Thymeleaf
Lessons learned from upgrading ThymeleafVMware Tanzu
 

Was ist angesagt? (20)

Hibernate complete notes_by_sekhar_sir_javabynatara_j
Hibernate complete notes_by_sekhar_sir_javabynatara_jHibernate complete notes_by_sekhar_sir_javabynatara_j
Hibernate complete notes_by_sekhar_sir_javabynatara_j
 
Tumbleweed intro
Tumbleweed introTumbleweed intro
Tumbleweed intro
 
Rest web service
Rest web serviceRest web service
Rest web service
 
Spring Web Service, Spring JMS, Eclipse & Maven tutorials
Spring Web Service, Spring JMS, Eclipse & Maven tutorialsSpring Web Service, Spring JMS, Eclipse & Maven tutorials
Spring Web Service, Spring JMS, Eclipse & Maven tutorials
 
Exploring Maven SVN GIT
Exploring Maven SVN GITExploring Maven SVN GIT
Exploring Maven SVN GIT
 
Ruby On Rails Tutorial
Ruby On Rails TutorialRuby On Rails Tutorial
Ruby On Rails Tutorial
 
Spring Framework -I
Spring Framework -ISpring Framework -I
Spring Framework -I
 
Leverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherLeverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features Together
 
Part 7 packaging and deployment
Part 7 packaging and deploymentPart 7 packaging and deployment
Part 7 packaging and deployment
 
3) web development
3) web development3) web development
3) web development
 
Reactjs Basics
Reactjs BasicsReactjs Basics
Reactjs Basics
 
DJango
DJangoDJango
DJango
 
Overview of JEE Technology
Overview of JEE TechnologyOverview of JEE Technology
Overview of JEE Technology
 
Lab 5a) create a struts application
Lab 5a) create a struts applicationLab 5a) create a struts application
Lab 5a) create a struts application
 
Ee java lab assignment 4
Ee java lab assignment 4Ee java lab assignment 4
Ee java lab assignment 4
 
Lec6 ecom fall16
Lec6 ecom fall16Lec6 ecom fall16
Lec6 ecom fall16
 
Spring boot jpa
Spring boot jpaSpring boot jpa
Spring boot jpa
 
Spring jdbc
Spring jdbcSpring jdbc
Spring jdbc
 
Lessons learned from upgrading Thymeleaf
Lessons learned from upgrading ThymeleafLessons learned from upgrading Thymeleaf
Lessons learned from upgrading Thymeleaf
 
Spring Framework - III
Spring Framework - IIISpring Framework - III
Spring Framework - III
 

Ähnlich wie OrchardCMS module development

Drupal 8 and iOS - an Open Source App
Drupal 8 and iOS - an Open Source AppDrupal 8 and iOS - an Open Source App
Drupal 8 and iOS - an Open Source ApplittleMAS
 
OpenERP Technical Memento V0.7.3
OpenERP Technical Memento V0.7.3OpenERP Technical Memento V0.7.3
OpenERP Technical Memento V0.7.3Borni DHIFI
 
WebNet Conference 2012 - Designing complex applications using html5 and knock...
WebNet Conference 2012 - Designing complex applications using html5 and knock...WebNet Conference 2012 - Designing complex applications using html5 and knock...
WebNet Conference 2012 - Designing complex applications using html5 and knock...Fabio Franzini
 
Introduction To Code Igniter
Introduction To Code IgniterIntroduction To Code Igniter
Introduction To Code IgniterAmzad Hossain
 
بررسی چارچوب جنگو
بررسی چارچوب جنگوبررسی چارچوب جنگو
بررسی چارچوب جنگوrailsbootcamp
 
Open event (Drupalcamp Sunderland 2015)
Open event (Drupalcamp Sunderland 2015)Open event (Drupalcamp Sunderland 2015)
Open event (Drupalcamp Sunderland 2015)Jorge López-Lago
 
Eclipse e4 Overview
Eclipse e4 OverviewEclipse e4 Overview
Eclipse e4 OverviewLars Vogel
 
Open Source RAD with OpenERP 7.0
Open Source RAD with OpenERP 7.0Open Source RAD with OpenERP 7.0
Open Source RAD with OpenERP 7.0Quang Ngoc
 
13th Sep, Drupal 7 advanced training by TCS
13th Sep, Drupal 7 advanced training by TCS 13th Sep, Drupal 7 advanced training by TCS
13th Sep, Drupal 7 advanced training by TCS DrupalMumbai
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practicesmanugoel2003
 
Open erp technical_memento_v0.6.3_a4
Open erp technical_memento_v0.6.3_a4Open erp technical_memento_v0.6.3_a4
Open erp technical_memento_v0.6.3_a4openerpwiki
 
Code igniter - A brief introduction
Code igniter - A brief introductionCode igniter - A brief introduction
Code igniter - A brief introductionCommit University
 
Apache Cordova In Action
Apache Cordova In ActionApache Cordova In Action
Apache Cordova In ActionHazem Saleh
 
Drupal 8 - Core and API Changes
Drupal 8 - Core and API ChangesDrupal 8 - Core and API Changes
Drupal 8 - Core and API ChangesShabir Ahmad
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep DiveGabriel Walt
 
Open Architecture in the Adobe Marketing Cloud - Summit 2014
Open Architecture in the Adobe Marketing Cloud - Summit 2014Open Architecture in the Adobe Marketing Cloud - Summit 2014
Open Architecture in the Adobe Marketing Cloud - Summit 2014Paolo Mottadelli
 

Ähnlich wie OrchardCMS module development (20)

Drupal 8 and iOS - an Open Source App
Drupal 8 and iOS - an Open Source AppDrupal 8 and iOS - an Open Source App
Drupal 8 and iOS - an Open Source App
 
OpenERP Technical Memento V0.7.3
OpenERP Technical Memento V0.7.3OpenERP Technical Memento V0.7.3
OpenERP Technical Memento V0.7.3
 
WebNet Conference 2012 - Designing complex applications using html5 and knock...
WebNet Conference 2012 - Designing complex applications using html5 and knock...WebNet Conference 2012 - Designing complex applications using html5 and knock...
WebNet Conference 2012 - Designing complex applications using html5 and knock...
 
Intro lift
Intro liftIntro lift
Intro lift
 
Spring boot
Spring bootSpring boot
Spring boot
 
Introduction To Code Igniter
Introduction To Code IgniterIntroduction To Code Igniter
Introduction To Code Igniter
 
بررسی چارچوب جنگو
بررسی چارچوب جنگوبررسی چارچوب جنگو
بررسی چارچوب جنگو
 
CG_CS25010_Lecture
CG_CS25010_LectureCG_CS25010_Lecture
CG_CS25010_Lecture
 
Open event (Drupalcamp Sunderland 2015)
Open event (Drupalcamp Sunderland 2015)Open event (Drupalcamp Sunderland 2015)
Open event (Drupalcamp Sunderland 2015)
 
Eclipse e4 Overview
Eclipse e4 OverviewEclipse e4 Overview
Eclipse e4 Overview
 
Open Source RAD with OpenERP 7.0
Open Source RAD with OpenERP 7.0Open Source RAD with OpenERP 7.0
Open Source RAD with OpenERP 7.0
 
13th Sep, Drupal 7 advanced training by TCS
13th Sep, Drupal 7 advanced training by TCS 13th Sep, Drupal 7 advanced training by TCS
13th Sep, Drupal 7 advanced training by TCS
 
Drupal Best Practices
Drupal Best PracticesDrupal Best Practices
Drupal Best Practices
 
Open erp technical_memento_v0.6.3_a4
Open erp technical_memento_v0.6.3_a4Open erp technical_memento_v0.6.3_a4
Open erp technical_memento_v0.6.3_a4
 
Code igniter - A brief introduction
Code igniter - A brief introductionCode igniter - A brief introduction
Code igniter - A brief introduction
 
Open event presentation.3 2
Open event presentation.3 2Open event presentation.3 2
Open event presentation.3 2
 
Apache Cordova In Action
Apache Cordova In ActionApache Cordova In Action
Apache Cordova In Action
 
Drupal 8 - Core and API Changes
Drupal 8 - Core and API ChangesDrupal 8 - Core and API Changes
Drupal 8 - Core and API Changes
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep Dive
 
Open Architecture in the Adobe Marketing Cloud - Summit 2014
Open Architecture in the Adobe Marketing Cloud - Summit 2014Open Architecture in the Adobe Marketing Cloud - Summit 2014
Open Architecture in the Adobe Marketing Cloud - Summit 2014
 

Mehr von Jay Harris

Bullets Kill People: Building Effective Presentations
Bullets Kill People: Building Effective PresentationsBullets Kill People: Building Effective Presentations
Bullets Kill People: Building Effective PresentationsJay Harris
 
Dethroning Grunt: Simple and Effective Builds with gulp.js
Dethroning Grunt: Simple and Effective Builds with gulp.jsDethroning Grunt: Simple and Effective Builds with gulp.js
Dethroning Grunt: Simple and Effective Builds with gulp.jsJay Harris
 
Test driven node.js
Test driven node.jsTest driven node.js
Test driven node.jsJay Harris
 
node.js Module Development
node.js Module Developmentnode.js Module Development
node.js Module DevelopmentJay Harris
 
The Geek's Guide to SEO
The Geek's Guide to SEOThe Geek's Guide to SEO
The Geek's Guide to SEOJay Harris
 
Going for Speed: Testing for Performance
Going for Speed: Testing for PerformanceGoing for Speed: Testing for Performance
Going for Speed: Testing for PerformanceJay Harris
 
Dev Basics: The ASP.NET Page Life Cycle
Dev Basics: The ASP.NET Page Life CycleDev Basics: The ASP.NET Page Life Cycle
Dev Basics: The ASP.NET Page Life CycleJay Harris
 

Mehr von Jay Harris (7)

Bullets Kill People: Building Effective Presentations
Bullets Kill People: Building Effective PresentationsBullets Kill People: Building Effective Presentations
Bullets Kill People: Building Effective Presentations
 
Dethroning Grunt: Simple and Effective Builds with gulp.js
Dethroning Grunt: Simple and Effective Builds with gulp.jsDethroning Grunt: Simple and Effective Builds with gulp.js
Dethroning Grunt: Simple and Effective Builds with gulp.js
 
Test driven node.js
Test driven node.jsTest driven node.js
Test driven node.js
 
node.js Module Development
node.js Module Developmentnode.js Module Development
node.js Module Development
 
The Geek's Guide to SEO
The Geek's Guide to SEOThe Geek's Guide to SEO
The Geek's Guide to SEO
 
Going for Speed: Testing for Performance
Going for Speed: Testing for PerformanceGoing for Speed: Testing for Performance
Going for Speed: Testing for Performance
 
Dev Basics: The ASP.NET Page Life Cycle
Dev Basics: The ASP.NET Page Life CycleDev Basics: The ASP.NET Page Life Cycle
Dev Basics: The ASP.NET Page Life Cycle
 

Kürzlich hochgeladen

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Kürzlich hochgeladen (20)

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

OrchardCMS module development