frequently_asked_questions.strongarm.inc 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <?php
  2. /**
  3. * @file
  4. * frequently_asked_questions.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function frequently_asked_questions_strongarm() {
  10. $export = array();
  11. $strongarm = new stdClass();
  12. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  13. $strongarm->api_version = 1;
  14. $strongarm->name = 'faq_answer_category_name';
  15. $strongarm->value = 0;
  16. $export['faq_answer_category_name'] = $strongarm;
  17. $strongarm = new stdClass();
  18. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  19. $strongarm->api_version = 1;
  20. $strongarm->name = 'faq_answer_label';
  21. $strongarm->value = 'A:';
  22. $export['faq_answer_label'] = $strongarm;
  23. $strongarm = new stdClass();
  24. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  25. $strongarm->api_version = 1;
  26. $strongarm->name = 'faq_back_to_top';
  27. $strongarm->value = 'Back to Top';
  28. $export['faq_back_to_top'] = $strongarm;
  29. $strongarm = new stdClass();
  30. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  31. $strongarm->api_version = 1;
  32. $strongarm->name = 'faq_category_display';
  33. $strongarm->value = 'none';
  34. $export['faq_category_display'] = $strongarm;
  35. $strongarm = new stdClass();
  36. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  37. $strongarm->api_version = 1;
  38. $strongarm->name = 'faq_category_hide_qa_accordion';
  39. $strongarm->value = 1;
  40. $export['faq_category_hide_qa_accordion'] = $strongarm;
  41. $strongarm = new stdClass();
  42. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  43. $strongarm->api_version = 1;
  44. $strongarm->name = 'faq_category_listing';
  45. $strongarm->value = 'ul';
  46. $export['faq_category_listing'] = $strongarm;
  47. $strongarm = new stdClass();
  48. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  49. $strongarm->api_version = 1;
  50. $strongarm->name = 'faq_count';
  51. $strongarm->value = 0;
  52. $export['faq_count'] = $strongarm;
  53. $strongarm = new stdClass();
  54. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  55. $strongarm->api_version = 1;
  56. $strongarm->name = 'faq_custom_breadcrumbs';
  57. $strongarm->value = 1;
  58. $export['faq_custom_breadcrumbs'] = $strongarm;
  59. $strongarm = new stdClass();
  60. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  61. $strongarm->api_version = 1;
  62. $strongarm->name = 'faq_default_sorting';
  63. $strongarm->value = 'DESC';
  64. $export['faq_default_sorting'] = $strongarm;
  65. $strongarm = new stdClass();
  66. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  67. $strongarm->api_version = 1;
  68. $strongarm->name = 'faq_description';
  69. $strongarm->value = 'We hope that you\'ll find the appropriate answer to your question here !';
  70. $export['faq_description'] = $strongarm;
  71. $strongarm = new stdClass();
  72. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  73. $strongarm->api_version = 1;
  74. $strongarm->name = 'faq_disable_node_links';
  75. $strongarm->value = 0;
  76. $export['faq_disable_node_links'] = $strongarm;
  77. $strongarm = new stdClass();
  78. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  79. $strongarm->api_version = 1;
  80. $strongarm->name = 'faq_display';
  81. $strongarm->value = 'hide_answer';
  82. $export['faq_display'] = $strongarm;
  83. $strongarm = new stdClass();
  84. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  85. $strongarm->api_version = 1;
  86. $strongarm->name = 'faq_group_questions_top';
  87. $strongarm->value = 0;
  88. $export['faq_group_questions_top'] = $strongarm;
  89. $strongarm = new stdClass();
  90. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  91. $strongarm->api_version = 1;
  92. $strongarm->name = 'faq_hide_child_terms';
  93. $strongarm->value = 0;
  94. $export['faq_hide_child_terms'] = $strongarm;
  95. $strongarm = new stdClass();
  96. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  97. $strongarm->api_version = 1;
  98. $strongarm->name = 'faq_hide_qa_accordion';
  99. $strongarm->value = 1;
  100. $export['faq_hide_qa_accordion'] = $strongarm;
  101. $strongarm = new stdClass();
  102. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  103. $strongarm->api_version = 1;
  104. $strongarm->name = 'faq_omit_vocabulary';
  105. $strongarm->value = array(
  106. 15 => '15',
  107. 4 => '4',
  108. 14 => '14',
  109. 16 => '16',
  110. 17 => 0,
  111. );
  112. $export['faq_omit_vocabulary'] = $strongarm;
  113. $strongarm = new stdClass();
  114. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  115. $strongarm->api_version = 1;
  116. $strongarm->name = 'faq_qa_mark';
  117. $strongarm->value = 0;
  118. $export['faq_qa_mark'] = $strongarm;
  119. $strongarm = new stdClass();
  120. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  121. $strongarm->api_version = 1;
  122. $strongarm->name = 'faq_question_label';
  123. $strongarm->value = 'Q:';
  124. $export['faq_question_label'] = $strongarm;
  125. $strongarm = new stdClass();
  126. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  127. $strongarm->api_version = 1;
  128. $strongarm->name = 'faq_question_length';
  129. $strongarm->value = 'short';
  130. $export['faq_question_length'] = $strongarm;
  131. $strongarm = new stdClass();
  132. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  133. $strongarm->api_version = 1;
  134. $strongarm->name = 'faq_question_listing';
  135. $strongarm->value = 'ul';
  136. $export['faq_question_listing'] = $strongarm;
  137. $strongarm = new stdClass();
  138. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  139. $strongarm->api_version = 1;
  140. $strongarm->name = 'faq_question_long_form';
  141. $strongarm->value = 0;
  142. $export['faq_question_long_form'] = $strongarm;
  143. $strongarm = new stdClass();
  144. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  145. $strongarm->api_version = 1;
  146. $strongarm->name = 'faq_show_expand_all';
  147. $strongarm->value = 1;
  148. $export['faq_show_expand_all'] = $strongarm;
  149. $strongarm = new stdClass();
  150. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  151. $strongarm->api_version = 1;
  152. $strongarm->name = 'faq_show_node_links';
  153. $strongarm->value = 1;
  154. $export['faq_show_node_links'] = $strongarm;
  155. $strongarm = new stdClass();
  156. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  157. $strongarm->api_version = 1;
  158. $strongarm->name = 'faq_show_term_page_children';
  159. $strongarm->value = 0;
  160. $export['faq_show_term_page_children'] = $strongarm;
  161. $strongarm = new stdClass();
  162. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  163. $strongarm->api_version = 1;
  164. $strongarm->name = 'faq_title';
  165. $strongarm->value = 'Frequently Asked Questions';
  166. $export['faq_title'] = $strongarm;
  167. $strongarm = new stdClass();
  168. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  169. $strongarm->api_version = 1;
  170. $strongarm->name = 'faq_use_categories';
  171. $strongarm->value = 1;
  172. $export['faq_use_categories'] = $strongarm;
  173. $strongarm = new stdClass();
  174. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  175. $strongarm->api_version = 1;
  176. $strongarm->name = 'faq_use_teaser';
  177. $strongarm->value = 1;
  178. $export['faq_use_teaser'] = $strongarm;
  179. $strongarm = new stdClass();
  180. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  181. $strongarm->api_version = 1;
  182. $strongarm->name = 'nodeformscols_field_placements_faq_default';
  183. $strongarm->value = array(
  184. 'title' => array(
  185. 'region' => 'main',
  186. 'weight' => '1',
  187. 'has_required' => TRUE,
  188. 'title' => 'Question',
  189. ),
  190. 'additional_settings' => array(
  191. 'region' => 'main',
  192. 'weight' => '5',
  193. 'has_required' => FALSE,
  194. 'title' => 'Vertical tabs',
  195. 'hidden' => 0,
  196. ),
  197. 'actions' => array(
  198. 'region' => 'right',
  199. 'weight' => '3',
  200. 'has_required' => FALSE,
  201. 'title' => 'Save',
  202. 'hidden' => 0,
  203. ),
  204. 'language' => array(
  205. 'region' => 'right',
  206. 'weight' => '1',
  207. 'has_required' => FALSE,
  208. 'title' => 'Language',
  209. 'hidden' => 0,
  210. ),
  211. 'body' => array(
  212. 'region' => 'main',
  213. 'weight' => '3',
  214. 'has_required' => FALSE,
  215. 'title' => 'Answer',
  216. 'hidden' => 0,
  217. ),
  218. 'field_categories' => array(
  219. 'region' => 'right',
  220. 'weight' => '0',
  221. 'has_required' => TRUE,
  222. 'title' => 'Categories',
  223. ),
  224. 'title_field' => array(
  225. 'region' => 'main',
  226. 'weight' => '0',
  227. 'has_required' => TRUE,
  228. 'title' => 'Title',
  229. ),
  230. 'workflow' => array(
  231. 'region' => 'right',
  232. 'weight' => '2',
  233. 'has_required' => FALSE,
  234. 'title' => 'Importé',
  235. 'hidden' => 0,
  236. ),
  237. );
  238. $export['nodeformscols_field_placements_faq_default'] = $strongarm;
  239. $strongarm = new stdClass();
  240. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  241. $strongarm->api_version = 1;
  242. $strongarm->name = 'pathauto_taxonomy_term_faq_categories_pattern';
  243. $strongarm->value = '';
  244. $export['pathauto_taxonomy_term_faq_categories_pattern'] = $strongarm;
  245. return $export;
  246. }