Grav – Event Hooks
In this chapter, we will study Event Hooks in Grav. In Plugins chapter you will see, the logic of plugin was included in two methods. The methods are onPluginsInitialized and onPageInitialized; these methods are similar to…
In this chapter, we will study Event Hooks in Grav. In Plugins chapter you will see, the logic of plugin was included in two methods. The methods are onPluginsInitialized and onPageInitialized; these methods are similar to…
In this chapter, we will delve into how a plugins can be set up and configured. In addition, we will also understand the structure of a plugin and how to…
In this guide, we will discuss How to Inserting Elements into a List. Mutable Lists can grow dynamically at runtime. The List.add() function appends the specified value to the end of the…
In this chapter, we will understand how a plugin works as additional functionality in Grav. The plugin is a piece of software that provides additional functionality which was not originally…
In this chapter, we will discuss Lists (Basic operations) in Dart Programming Language and how to carry out some basic operations on Lists, such as − Sr.NoBasic Operation & Description1Inserting…
In this guide, we will discuss the List.single Method in Dart Programming Language. Checks if the list has only one element and returns it. Syntax List.single Example void main() {…
In this guide, we will discuss List.reversed Method in Dart Programming Language. Returns an iterable object containing the list values in the reverse order. Syntax List.reversed Example void main() {…
In this guide, we will discuss the List.last Method in Dart Programming Language. Returns the last element in the list. Syntax List.last Example void main() { var lst = new…
In this chapter, let us study Theme Customization. There are several ways to customize your theme. Grav provides many features and a few functionalities to easily customize your theme. Custom…
In this chapter let's study Asset Manager. Asset Manager was introduced in Grav 0.9.0 to unify the interface for adding and managing assets like JavaScript and CSS. Adding these assets from themes and…