You are here

function metatag_import_export_csv_help in Metatag Import Export CSV 7

Implements hook_help().

File

./metatag_import_export_csv.module, line 27
Main file for the Metatag Import Export module.

Code

function metatag_import_export_csv_help($path, $arg) {
  switch ($path) {
    case "admin/help#metatag_import_export_csv":
      $text = t("<h3>Metatag Import Export CSV.</h3> \n      <p>This modules helps user to import or export metatags for the nodes with the help of a CSV file.</p>\n      <p> Module supports 4 fields which are provided by <a href='https://www.drupal.org/project/metatag'>Metatag module</a> . \n      For more Information Please visit the project page\n      <a href='https://www.drupal.org/node/2738695'>https://www.drupal.org/node/2738695</a></p>\n          <h4>Metatag Import</h4>\n      <ul>\n      <li> Import metatags from a CSV on the basis of the path or URl Alias of the node. </li>\n      <li> Drush command : drush metatag-import < path to your CSV file> </li>\n      <li> Import Metatags from a CSV file. For the CSV format Some Sample files are  included inside sample folder.</li>\n      </ul>\n          <h4> Metatag Export</h4>\n      <ul>\n      <li> Export Metatags based on content type to a CSV file </li>\n      <li> The form for metatag export can be accessed by going to  /admin/config/search/metatags/export</li>\n      <li> Drush command : drush metatag-export <type> </li>\n      </ul>");
      return $text;
  }
}