function slack_get_files_age_unit in Slack 7
Get Slack files age unit.
Return value
string Get Slack files age unit.
2 calls to slack_get_files_age_unit()
- slack_configure_form in includes/
pages/ slack.admin.inc - Slack module admin form.
- slack_cron in ./
slack.module - Implements hook_cron().
File
- includes/
slack.api.inc, line 374 - Slack integration module API functions.
Code
function slack_get_files_age_unit() {
$slack_files_age_unit = variable_get('slack_files_age_unit', 'month');
return $slack_files_age_unit;
}