
Search In
As per Drupal's definition "A hook is a PHP function that is named foo_bar(), where "foo" is the name of the module (whose filename is thus foo.module) and "bar" is the name of the hook. Each hook has a defined set of parameters and a specified resul
Use following steps to create a similar content block for a particular content (Similar contents work on the basis of taxonomy. So first create a taxonomy and assign this to your content type):
1: Create a view with block view.
2: Set field and fo
Traceability Matrix
A traceability matrix is a documented report from the requirements database or repository. It contains all information requirements which determine the associated information to be stored with the requirements. We can use requir
Requirements for Traceability Matrix :-
Traceability Matrix can be determined using a kind of tools or equipment, in other words requirements management software, spreadsheets and databases, or yet with hyperlinks in a word processor or tables. Trace
Hi all,
if you want to give inter letter spacing to any kind of text of button , label , textfields etc then you can follow this code.
First make attributed string :-
NSMutableAttributedString * title = [[NSMutableAttributedString alloc] initWithS
In Javascript , getTime() method return the numeric value ( in milliseconds ) corresponding to the time for the specified data according to universal time . Through this method you can assign a date and time to another Date Object. Basically this me
To create a Pen Drive Bootable just follows the steps given below:
Step1- Insert your Pen Drive to the system. Please make sure that you don’t have any important data in your Pen Drive.
Step2- Type cmd in search of start menu in system.
Step3- Right
To assign a click event to all paragraphs we use this method. this is the syntax:
$("p").click();
now, in next step when an event fires, You must pass a function to this event:
$("p").click(function(){
});
$(document).ready()
The $(document).rea
Hello Reader!. If you want to show background image blur then you can use css.
Lets's make a html page :-
<div class="background-image"></div>
<div class="content">
<p>This is the para showing the content over the div. Beh
Hello Friends,
NSMutableAttributedString allows to set different attributes(font size,font color) for different parts of the string.
To use NSMutableString you may use the following code:
//Create an object of NSMutableAttrinbuteString and assign it
