You are here

function blockexport_help in Blockexport 7.2

Same name and namespace in other branches
  1. 7 blockexport.module \blockexport_help()

Implements hook_help().

File

./blockexport.module, line 11
This features component provide developer to export all blocks into a feature.

Code

function blockexport_help($path, $arg) {
  switch ($path) {
    case 'admin/help#blockexport':
      $output = '<h3>' . t('Installation') . '</h3>';
      $output .= '<p>' . t('Quite simple, Download the module and simply put into your your_drupal_path/sites/all/modules and install from your admin panel.') . '</p>';
      $output .= '<h3>' . t('Configuration and Features') . '</h3>';
      $output .= '<p>' . t('After successfull installation you able to export your all local box from Admin >> Structure >> Features >> Create Features') . '</p>';
      $output .= '<p>' . t('Enter your features name, description, package(optional), version(optional), URL(optional) and then choose "Block: blockexport_settings" from edit components drop-down box and then should check "Block: Export All Blocks" checkbox and then press download button.') . '</p>';
      $output .= '<p>' . t('Unzip your downloaded file and upload it into your drupal installed remote server or in any vanila drupal(drupal_root/sites/all/modules) where you want to import all the exported blocks and enable this module by drush or from admin.') . '</p>';
      $output .= '<h3>' . t('Dependencies') . '</h3>';
      $output .= '<p>' . t('1. Ctools') . '</br>' . t('2. Features') . '</p>';
      return $output;
      break;
  }
}