| 1 |
<?php |
<?php |
| 2 |
// $Id: image_pub.module,v 1.16 2008/12/02 22:46:58 egfrith Exp $ |
// $Id: image_pub.module,v 1.16.2.1 2009/01/31 02:00:25 egfrith Exp $ |
| 3 |
|
|
| 4 |
/* |
/* |
| 5 |
* Image publishing support module |
* Image publishing support module |
| 12 |
/** |
/** |
| 13 |
* Implementation of hook_help(). |
* Implementation of hook_help(). |
| 14 |
*/ |
*/ |
| 15 |
function image_pub_help($path = 'admin/help#image_pub', $arg=null) { |
function image_pub_help($path = 'admin/help#image_pub', $arg = null) { |
| 16 |
switch ($path) { |
switch ($path) { |
| 17 |
case 'admin/help#image_pub': |
case 'admin/help#image_pub': |
| 18 |
return '<p>'. t('The Image Publishing module supports third party image upload and management applications.') .'</p>'; |
return '<p>'. t('The Image Publishing module supports third party image upload and management applications.') .'</p>'; |
| 29 |
'access callback' => TRUE, |
'access callback' => TRUE, |
| 30 |
'file' => 'image_pub.gr.inc', |
'file' => 'image_pub.gr.inc', |
| 31 |
'type' => MENU_CALLBACK); |
'type' => MENU_CALLBACK); |
| 32 |
|
$items['main.php'] = array( |
| 33 |
|
'page callback' => '_image_pub_gr_request', |
| 34 |
|
'access callback' => TRUE, |
| 35 |
|
'file' => 'image_pub.gr.inc', |
| 36 |
|
'type' => MENU_CALLBACK); |
| 37 |
$items['publish_xp'] = array( |
$items['publish_xp'] = array( |
| 38 |
'page callback' => '_image_pub_xp_request', |
'page callback' => '_image_pub_xp_request', |
| 39 |
'access callback' => TRUE, |
'access callback' => TRUE, |