CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Joomla 3 – Adding and Modifying Users

In Joomla 3, user management is handled through “User Manager”. A user is a person; authorized to access Joomla components. Through this article, we are going to discuss how we can add/modify users through “User Manager”. Step 1. Log in to the website’s Control Panel as an administrator. Joomla will display the “Control Panel” page. […]

C++ – Operator Overloading

One of the beautiful features of ‘C++’ is its ability to support Operator Overloading. ‘C++’ Operator Overloading allows changing the behavior of operators when using them with ‘C++’ class objects. One of the best examples of Operator Overloading is the ‘+’ operator. Usually, the ‘+’ operator will add two integer operands and produce an integer […]

Drupal 7 – Creating a module (Part – 4)

As of now, we have created a node on the Configuration page to place the link to change the example module’s configuration settings. Now we have to implement the functionality to run when the user clicks on the Example node from the Configuration page. That means, we have to tell Drupal to display the Example […]

Joomla 3 – Linking articles and menu-items

Joomla allows to link articles with menu items. When you click on the menu items, Joomla will open associated articles. Joomla made it easy by providing simple user interface. Step 1. Log-in into your Joomla based website as an administrator. Joomla will display an admin “Control Panel”. Step 2. Click on “Menu Manager” item from […]

C Programming – Dynamic memory allocation

C language Programming provides functions to create and release memory dynamically. There are two types of functions ‘C’ provides: One type of functions allocates memory in the heap. malloc calloc realloc Other type of function(s) release the memory from the heap. free Now you will get the doubt; why release memory functions are required? Why […]

Joomla 3: Creating Menus and Menu Items

Joomla provides a simple user interface to allow the users to create menus and its menu items. Also, through the Joomla interface, we can set what action is to be performed when the user clicks on the menu item. This article explains the steps to perform this. Step 1. Log in to Joomla as an […]

Drupal 7 – Creating a module (Part – 3)

In our previous article, we have created a simple module that displays a “Welcome!” message whenever the user log-in to the Drupal-based website(s). Is that so simple to develop a module in Drupal 7? Yes, it is. But not this simple. Modules will do a lot of things. We have seen a simple part of […]

Scroll to top