first_install.inc in Patterns 7
Same filename and directory in other branches
Displays a form of necessary input configuration to the user.
File
includes/forms/first_install.incView source
<?php
/**
* @file
* Displays a form of necessary input configuration to the user.
*/
function patterns_first_install_page() {
module_load_include('inc', 'patterns', 'includes/forms/modules');
$out = drupal_get_form('patterns_first_install');
return $out;
}
function patterns_first_install($form, &$form_state) {
$intro1 = 'Patterns helps you to bypass the bottleneck of managing and automating site configuration. Start creating, and sharing patterns files in YAML, XML, or even PHP format.';
$intro2 = 'You just installed Patterns, or an important update was found';
//$intro.= 'This page gives you a brief guide to the main functionalities of Patterns and settings. TODO check which parsers are enabled, if components are enabled, path to drush, and other settings.';
$form['welcome'] = array(
'#type' => 'fieldset',
'#title' => t('Welcome to Patterns!'),
);
$form['welcome']['intro'] = array(
'#prefix' => '<div>',
'#suffix' => '</div><br/>',
'#markup' => t($intro1),
);
$resources = array();
$resources['items'] = array(
t('!documentation', array(
'!documentation' => l(t('Online documentation'), 'http://drupal.org/node/1464118'),
)),
t('!settings', array(
'!settings' => l(t('Settings'), 'admin/patterns/settings'),
)),
);
$resources['title'] = t('Resources');
$resources['type'] = 'ul';
$resources['attributes'] = array();
$form['welcome']['resources'] = array(
'#markup' => theme_item_list($resources),
'#suffix' => '<br>',
);
$form['welcome']['submit'] = array(
'#type' => 'submit',
'#value' => t('OK!'),
'#suffix' => '<div>' . t('By pressing OK this page will not be shown any more.') . '</div>',
);
$parsers = patterns_parser_build_formats_index();
if (empty($parsers)) {
$form['welcome']['parsers'] = array(
'#prefix' => '<br/><strong>' . t('Warning:') . ' </strong>',
'#markup' => t('It seems that you have not yet enabled any Patterns parser. You will not be able to load or run any pattern. Please visit the !modules page to enable at least one parser.', array(
'!modules' => l(t('modules'), 'admin/modules'),
)),
);
}
//Checking if Spyc is installed
if (($library = libraries_load('spyc')) && !empty($library['loaded'])) {
$form['welcome']['spyc'] = array(
'#prefix' => '<br/><strong>' . t('Spyc:') . ' </strong>',
'#markup' => t('Spyc library (version %version) successfully installed', array(
'%version' => $library['version'],
)),
);
}
else {
//Display error message if there were some problems
$form['welcome']['spyc'] = array(
'#prefix' => '<br/><strong>' . t('Warning:') . ' </strong>',
'#markup' => t('Patterns module requires Spyc library to work with YAML patterns. To enable YAML support, download the !spyc library and place it in your libraries directory (e.g. sites/all/libraries/spyc/).', array(
'!spyc' => l(t('spyc'), 'https://github.com/mustangostang/spyc/', array(
'absolute' => TRUE,
)),
)),
);
}
//Checking if Codemirror is installed
if (($library = libraries_load('codemirror')) && !empty($library['loaded'])) {
$form['welcome']['codemirror'] = array(
'#prefix' => '<br/><strong>' . t('Codemirror:') . ' </strong>',
'#markup' => t('Codemirror library (version %version) successfully installed', array(
'%version' => $library['version'],
)),
);
}
else {
//Display error message if there were some problems
$form['welcome']['codemirror'] = array(
'#prefix' => '<br/><strong>' . t('Warning:') . ' </strong>',
'#markup' => t('Patterns editor can be better visualized with CodeMirror. To enable CodeMirror support, download the !codemirror and copy it into the libraries folder (e.g. sites/all/libraries/codemirror/).', array(
'!codemirror' => l(t('library'), 'https://github.com/marijnh/CodeMirror/', array(
'absolute' => TRUE,
)),
)),
);
}
return $form;
}
function patterns_first_install_validate($form, &$form_state) {
return TRUE;
}
function patterns_first_install_submit($form, &$form_state) {
variable_set(PATTERNS_FIRST_INSTALL, FALSE);
menu_rebuild();
}
Functions
Name | Description |
---|---|
patterns_first_install | |
patterns_first_install_page | @file Displays a form of necessary input configuration to the user. |
patterns_first_install_submit | |
patterns_first_install_validate |