Skip to content

Instantly share code, notes, and snippets.

@MissAllSunday
Created November 27, 2013 17:00
Show Gist options
  • Save MissAllSunday/7679222 to your computer and use it in GitHub Desktop.
Save MissAllSunday/7679222 to your computer and use it in GitHub Desktop.
<?php
array (size=12)
'enable_wall' => string '1' (length=1)
'pagination_number' => string '5' (length=1)
'load_more' => string '0' (length=1)
'how_many_mentions' => string '5' (length=1)
'kick_ignored' => string '0' (length=1)
'enable_activityLog' => string '0' (length=1)
'enable_buddies' => string '0' (length=1)
'enable_visitors' => string '0' (length=1)
'visitors_timeframe' => string 'Hour' (length=4)
'clear_noti' => string '0' (length=1)
'noti_on_comment' => string '0' (length=1)
'noti_on_mention' => string '0' (length=1)
// Member options
$tables[] = array(
'table_name' => '{db_prefix}breeze_options',
'columns' => array(
array(
'name' => 'member_id',
'type' => 'int',
'size' => 5,
'null' => false
),
array(
'name' => 'variable',
'type' => 'varchar',
'size' => 255,
'default' => '',
),
array(
'name' => 'value',
'type' => 'varchar',
'size' => 255,
'default' => '',
),
),
'indexes' => array(
array(
'type' => 'key',
'columns' => array('member_id')
),
),
'if_exists' => 'ignore',
'error' => 'fatal',
'parameters' => array(),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment