UI revamp what's new dialog

This commit is contained in:
Duncan Sommerville 2015-09-28 17:19:02 -04:00
parent d3f5b046f3
commit 67c20630a3
7 changed files with 101 additions and 1 deletions

View file

@ -1478,4 +1478,15 @@ class Application_Model_Preference
{
self::setValue("lang_tz_setup_complete", $value);
}
public static function getWhatsNewDialogViewed()
{
$val = self::getValue("whats_new_dialog_viewed", true);
return empty($val) ? false : $val;
}
public static function setWhatsNewDialogViewed($value)
{
self::setValue("whats_new_dialog_viewed", $value, true);
}
}