You are here

humanstxt.module in Humans.txt 6

Same filename and directory in other branches
  1. 8 humanstxt.module
  2. 7 humanstxt.module
  3. 2.x humanstxt.module

humanstxt module file.

File

humanstxt.module
View source
<?php

/**
 * @file
 * humanstxt module file.
 */

/**
 * Implements hook_perm().
 */
function humanstxt_perm() {
  return array(
    'administer humans.txt',
  );
}

/**
 * Implements hook_menu().
 */
function humanstxt_menu() {
  $items['humans.txt'] = array(
    'page callback' => 'humanstxt_file',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  $items['admin/settings/humanstxt'] = array(
    'title' => 'Humanstxt',
    'description' => 'Manage your humans.txt file.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'humanstxt_admin_settings',
    ),
    'access arguments' => array(
      'administer humans.txt',
    ),
    'file' => 'humanstxt.admin.inc',
  );
  return $items;
}

/**
 * Callback to display humans.txt file.
 */
function humanstxt_file() {
  $content = array();
  $content[] = _humanstxt_get_content();

  // Trim any extra whitespace and filter out empty strings.
  $content = array_map('trim', $content);
  $content = array_filter($content);
  header('Content-type: text/plain; charset=UTF-8');
  echo implode("\n", $content);
  exit;
}

/**
 * Helper function to get the content of the humans.txt file.
 */
function _humanstxt_get_content() {
  $content = variable_get('humanstxt', FALSE);
  if ($content === FALSE) {
    $file = getcwd() . '/humanstxt.txt';
    if (file_exists($file) && is_readable($file)) {
      $content = file_get_contents($file);
    }
  }
  return $content;
}

/**
 * Implements hook_requirements().
 */
function humanstxt_requirements($phase) {
  $requirements = array();
  $t = get_t();
  switch ($phase) {
    case 'runtime':

      // Module cannot work without Clean URLs.
      if (!variable_get('clean_url', 0)) {
        $requirements['humanstxt_cleanurl'] = array(
          'title' => $t('Humanstxt'),
          'severity' => REQUIREMENT_ERROR,
          'value' => $t('<a href="!clean_url">Clean URLs</a> are mandatory for this module.', array(
            '!clean_url' => url('admin/config/search/clean-urls'),
          )),
        );
      }
  }
  return $requirements;
}

/**
 * Add the <head> link if the user has selected so.
 */
function humanstxt_init() {
  if (variable_get('humanstxt_display_link', FALSE)) {
    drupal_add_link(array(
      'type' => 'text/plain',
      'rel' => 'author',
      'href' => url('humans.txt', array(
        'absolute' => TRUE,
      )),
    ), TRUE);
  }
}

Functions

Namesort descending Description
humanstxt_file Callback to display humans.txt file.
humanstxt_init Add the <head> link if the user has selected so.
humanstxt_menu Implements hook_menu().
humanstxt_perm Implements hook_perm().
humanstxt_requirements Implements hook_requirements().
_humanstxt_get_content Helper function to get the content of the humans.txt file.