You are here

pdf_document.strongarm.inc in PDF to ImageField 7

Same filename and directory in other branches
  1. 6.2 pdf_document/pdf_document.strongarm.inc

File

pdf_document/pdf_document.strongarm.inc
View source
<?php

/**
 * Implements hook_strongarm().
 */
function pdf_document_strongarm() {
  $export = array();
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'content_extra_weights_document';
  $strongarm->value = array(
    'title' => '-5',
    'body_field' => '-3',
    'revision_information' => '1',
    'author' => '0',
    'options' => '2',
    'menu' => '-4',
    'path' => '4',
    'attachments' => '3',
  );
  $export['content_extra_weights_document'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'node_options_document';
  $strongarm->value = array(
    0 => 'status',
  );
  $export['node_options_document'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'upload_document';
  $strongarm->value = '1';
  $export['upload_document'] = $strongarm;
  return $export;
}

Functions

Namesort descending Description
pdf_document_strongarm Implements hook_strongarm().