drupal 7 where to make new image style
Here’s how I got to it
Modules > search ‘image’
> add style
// calling hook_menu() function helloworld_menu() { $menu[‘hello/world'] = array( 'title' => ‘Hello World Simple Page', 'page callback' => ‘helloworld_worldview’, // this is the function underneath 'access callback' => TRUE, ); return $menu; } functionhelloworld_worldview() { return ‘Hello World !'; }
$timestamp = '1410126126'; $datestring = gmdate("Y-m-d H:i:s", $timestamp); echo $datestring;
in helloworld.info name = "Hello World" description = "Hello Modules list !." core = 7.x files[] = helloworld.module