You are here

function skinr_skin_default in Skinr 6.2

Prepare defaults for skins.

Return value

An array of default skins settings.

1 call to skinr_skin_default()
_skinr_skinset in ./skinr.module
Helper function to process a skin or theme .info file.

File

./skinr.module, line 624

Code

function skinr_skin_default() {
  return array(
    'title' => '',
    'type' => 'checkboxes',
    'description' => '',
    'features' => array(
      '*',
    ),
    'templates' => array(),
    'group' => '',
    'options' => array(),
    'stylesheets' => array(),
    'scripts' => array(),
    'weight' => NULL,
  );
}