Umbraco v11: Advanced Course
Umbraco v11: Advanced Course, available at $49.99, has an average rating of 4.5, with 85 lectures, based on 66 reviews, and has 448 subscribers.
You will learn about Extend Umbraco backoffice to improve the editors' experience Umbraco routing, Content Finders and Url providers (Inbound and Outbound pipeline) Build a RESTful API service with the UmbracoApiController Custom Database tables, Migrations and Notifications Handler in practice uSync – Overview, Configuration and Practical use cases Automatic deploy of Umbraco applications through Github Actions to a linux VPS This course is ideal for individuals who are Developers who want to deepen their knowledge of Umbraco in order to build increasingly complex Umbraco solutions. or Developers who want to learn advanced Umbraco topics without having to spend hours and hours searching the Internet and making tries. It is particularly useful for Developers who want to deepen their knowledge of Umbraco in order to build increasingly complex Umbraco solutions. or Developers who want to learn advanced Umbraco topics without having to spend hours and hours searching the Internet and making tries.
Enroll now: Umbraco v11: Advanced Course
Summary
Title: Umbraco v11: Advanced Course
Price: $49.99
Average Rating: 4.5
Number of Lectures: 85
Number of Published Lectures: 85
Number of Curriculum Items: 85
Number of Published Curriculum Objects: 85
Original Price: €44.99
Quality Status: approved
Status: Live
What You Will Learn
- Extend Umbraco backoffice to improve the editors' experience
- Umbraco routing, Content Finders and Url providers (Inbound and Outbound pipeline)
- Build a RESTful API service with the UmbracoApiController
- Custom Database tables, Migrations and Notifications Handler in practice
- uSync – Overview, Configuration and Practical use cases
- Automatic deploy of Umbraco applications through Github Actions to a linux VPS
Who Should Attend
- Developers who want to deepen their knowledge of Umbraco in order to build increasingly complex Umbraco solutions.
- Developers who want to learn advanced Umbraco topics without having to spend hours and hours searching the Internet and making tries.
Target Audiences
- Developers who want to deepen their knowledge of Umbraco in order to build increasingly complex Umbraco solutions.
- Developers who want to learn advanced Umbraco topics without having to spend hours and hours searching the Internet and making tries.
Update your skills with the latest version of Umbraco CMS and start building better applications.
During this course we’ll be using Umbraco v11 and I’ll be taking you through several topics, mixing theory with practice.
My aim is to share with you all the experience I have gained in several years using Umbraco CMS every day, in the simplest way possible.
We will deepen and explore:
-
The Umbraco routing – Inbound and Outbound pipelines
-
All the Umbraco Controllers (Did you ever hear about UmbracoPageController?)
-
The Models Builder
-
The Notifications Handler with some practical examples
-
How to work with custom database table using NPoco ORM
We will customize the backoffice:
-
Developing a Custom Property Editor
-
Developing a Content App
-
Customizing a ListView layout
-
Modifying the “Allowed Actions” for a specific user, node or as a default behaviour
Get a very deep understanding of Umbraco and its components!
But that’s not all!
We will build a RESTful API service that integrates and modifies umbraco backoffice nodes via the umbraco ContentService and MediaService services.
Security will not be neglected, we will see how to configure an OAuth2 authorization server and how to protect our RESTful API service using JWT tokens to authenticate and authorize the requests.
Of course, we don’t want to keep our applications on our computer, we want to share them with the world!
That’s why we’ll see how to configure uSync to keep our content synchronised across different environments and how to automatically deploy our Umbraco applications on a Linux server using Github Actions.
I hope to see you in my course and if so, what really matters to me is that this course could make you a better Umbraco developer!
If you have any doubt or question, don’t hesitate to contact me, I’ll do my best to answer and help you!
#H5YR!
Course Curriculum
Chapter 1: Getting started
Lecture 1: About me
Lecture 2: Course Introduction
Chapter 2: Basic Setup
Lecture 1: Umbraco CLI Installation
Lecture 2: Umbraco with SQL Server Database
Lecture 3: Visual studio and SQLlite
Lecture 4: Install the “Starter template”
Chapter 3: Explore Umbraco Controllers
Lecture 1: Module Introduction
Lecture 2: Surface Controller
Lecture 3: Umbraco API Controller
Lecture 4: Render MVC Controller
Lecture 5: Umbraco Authorized Controllers
Lecture 6: Umbraco Page Controller
Lecture 7: Umbraco Page Controller in Practice
Chapter 4: Models Builder in Depth
Lecture 1: What is Models Builder
Lecture 2: Understanding all Types of Builder Mode
Lecture 3: Advanced Configuration of Models Builder
Lecture 4: How to Extend Generated Models
Chapter 5: The Block List Editor
Lecture 1: Module Introduction
Lecture 2: Beautify the BlockList Elements Preview
Lecture 3: Update BlockList element's View on Data Change
Lecture 4: Update BlockList element's View on Settings Change
Lecture 5: Build a Complex BlockList Element
Lecture 6: Render BlockList Elements in the Frontend – Part 1
Lecture 7: Render BlockList Elements in the Frontend – Part 2
Lecture 8: A Quick Look to the New BlockGrid Property Editor
Chapter 6: Route Hijacking
Lecture 1: What is Route Hijacking
Lecture 2: Hijacking an Umbraco Page's route
Lecture 3: Create ViewModels with Additional Data
Lecture 4: Manage QueryString Parameters
Chapter 7: RESTful API Service
Lecture 1: Module introduction
Lecture 2: Add a Controller to Handle CRUD Operations
Lecture 3: Implement Repository pattern
Lecture 4: Valorize ViewModels with UmbracoMapper
Lecture 5: Search & Filtering out the Products
Lecture 6: Delete Content Programmatically with Umbraco Api
Lecture 7: Create Content Programmatically with Umbraco Api
Lecture 8: Update Content Programmatically with Umbraco Api
Chapter 8: EXTRA – Authenticate an UmbracoApiController – OAuth2 and JWT tokens
Lecture 1: Module Introduction
Lecture 2: Configure OAuth2 Authorization Server
Lecture 3: Add Authorization to the Product controller
Lecture 4: Conclusions
Chapter 9: Custom Routing and Content Finder
Lecture 1: Inbound and Outbound Pipelines
Lecture 2: How Umbraco Builds Urls
Lecture 3: Customize the Url of Product Pages with the IUrlSegmentProvider
Lecture 4: Modify the Inbound Pipeline with a Custom ContentFinder
Chapter 10: Using Custom Database Tables
Lecture 1: How to Handle Custom Tables with Umbraco
Lecture 2: Prepare the Migration for our Custom Tables
Lecture 3: Save data Inside the New Custom Table
Chapter 11: Working with Notifications Handler
Lecture 1: Notifications Explained
Lecture 2: Notifications Handler Explained
Lecture 3: Notifications Handler Lifetime
Lecture 4: Registering to ContentPublishingNotification and ContentPublishedNotification
Lecture 5: Set Default Values for Property Editors with the EditorModel Notification
Lecture 6: Remove Menu Actions of a Specific Node
Lecture 7: Umbraco “AllowedActions” – Hide Save&Publish Button for Non-Admin users
Chapter 12: Backoffice Customization
Lecture 1: What is a Content App and When to Use it
Lecture 2: Build a Content App for the Contact Page
Lecture 3: Build a Custom Property Editor – Add it Inside the Umbraco Backoffice – Part 1
Lecture 4: Build a custom Property Editor – PropertyValueConverter – Part 2
Lecture 5: Build a Custom Property Editor – Render its Values in the Frontend – Part 3
Lecture 6: Build a Customized ListView
Chapter 13: uSync – Overview, Configuration and Practical use cases
Lecture 1: uSync vs uSync.Complete
Lecture 2: Exploring uSync Sections and Basic Functionalities
Lecture 3: uSync Configurations via AppSettings – Suggested Configuration
Lecture 4: uSync.Complete Installation and Configuration
Lecture 5: Configure Publisher for DEV and PROD Environments
Lecture 6: Push & Pull Contents Between Environments
Lecture 7: Overview of uSync Handlers
Chapter 14: Host an Umbraco Application on a Linux VPS
Lecture 1: Module Introduction
Lecture 2: Prepare the Server
Lecture 3: Install DotNet 7
Lecture 4: Install and Configure MS SQL Server
Lecture 5: Build and Move the Umbraco Solution on the Server
Lecture 6: Install and Configure Apache2
Lecture 7: Create a Linux Service to Run the Application
Lecture 8: Secure your Server with UFW
Lecture 9: Install and Configure VSFTPD (FTP Server)
Lecture 10: Run Multiples Umbraco Applications on the same Server
Lecture 11: Conclusions
Chapter 15: Automatic Deployment with Github Actions
Lecture 1: How Github Actions works
Lecture 2: Create a Github Repository and Push the Code
Lecture 3: Prepare Deployment File
Lecture 4: Add App Secrets
Lecture 5: Push and Deploy the Code Automatically
Chapter 16: Thanks and Conclusions
Instructors
-
Francesco Guidi
Professional Web Developer / Umbraco developer
Rating Distribution
- 1 stars: 4 votes
- 2 stars: 1 votes
- 3 stars: 5 votes
- 4 stars: 26 votes
- 5 stars: 30 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024