-
05 Jul
Create Custom Form as a Block in Drupal
If User make custom Module form as block in drupal so that time put below code in your Custom module-name.module file Here Custom-Modules-Name is your Module name. Code
- Category :
- Drupal
-
04 Jul
APNS (Apple Push Notification Service), Embed with Application.
Sometimes we need to notify users about the new updates or about an event in an application. Apple has provided features that can be use for this. One of these features is Local Notification and another is Push Notification. In these features we can have messages, or any other data from server.
In Local Notification, notification is local to device on which the application is installed. User can schedule local notification by setting date and time.
In Push Notification (remote notification), the message or data about an event is sent from remote server through APNS (Apple Push Notification Service) to the users devices. When Push Notification receives it contains payload that contains message or sound or any other data, which can be access through Remote notification methods.- Category :
- iPhone iOS
- PHP
-
04 Jul
How to make simple iPhone & android Games (cross platform) with Gideros Mobile
What is Gideros Studio Gideros Studio is a cross platform development tool created by Gideros Mobile as of now it supports iPhone, iPad, iPod and all Android Devices. It uses LUA as a programming language very lightweight and powerful. Gideros studio will out put you native code for ios and android devices as xcode and android project. In the future it will also going to support Windows phone as well as mac and pc.
Download and InstallationThis is really very straight forward process and I really don’t want to write stuff like go here, download this , double click on so and so file etc so I am leaving this up to you. Go to the site giderosmobile.com/download register your self as a developer, download the latest version and install that once you had installed this come back here we are not going anywhere and waiting for you.
- Category :
- iPhone iOS
-
04 Jul
Display Latest Blog post from blog site in your website
Sometimes you need to display latest published blog posts from blog on your website. So, for that you can use any plugin like “KB Advanced RSS Widget“. Or can display using complex database connections (if have database details). But, the recently published posts of any blog page can be displayed on your website using simple code also.
- Category :
- Wordpress
-
02 Jul
MVC Framework
What Is MVC ? MVC is an architectural pattern used in software engineering. In complex computer applications that present lots of data to the user, one often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface do not impact the data handling, and that the data can be reorganized without changing the user interface. The model-view-controller solves this problem by decoupling data access and business logic from data presentation and user interaction, by introducing an intermediate component: the controller.
-
01 Jul
How to stop wordpress asks you to provide ftp to upgrade Worpress or Plugin?
Are you hosting your WordPress sites on one of those hosts where WordPress asks you to provide FTP details before upgrading itself or upgrading plugins? So Now WordPress will stop asking you for FTP details Here’s how you can do it
Open your wp-config.php file locate in your wordpress root directory
And copy and past below detail after your database detail block in wp-config.php file -
01 Jul
Display Shortcode content to logged in users only in wordpress
Ever wanted to be able to show some content only to logged in users in your blog posts? If yes, just add below code in your shortcode function View Code PHP1 if(!is_user_logged_in()){ return ""; } For example:
-
01 Jul
Create Simple WordPress Plugin from Scratch
First of all why you need to create plugin ? So, the answer is some time the ready plugin may not suitable to your / clients needs. also sometimes you have to compromise with your/clients need. So, best way is to create your own plugin. Lets start…
Writing your own plugin is not a difficult tasks, if you know some basic PHP skills.
Plugins can be in a single php file or they have their own folder containing required files. If it is more than one file you need a folder.
WordPress has lots of prebuilt stuff that can make, building plugins really easy.- Category :
- Wordpress