1
0
Fork 0

Add Theme::getBackgroundColor and Theme::getThemeColor methods

This commit is contained in:
Hypolite Petovan 2020-02-19 10:28:57 -05:00
commit b9325251e8
6 changed files with 188 additions and 0 deletions

View file

@ -98,3 +98,25 @@ $(document).ready(function() {
</script>
EOT;
}
/**
* @param int|null $uid
* @return null
* @see \Friendica\Core\Theme::getBackgroundColor()
* @TODO Implement this function
*/
function duepuntozero_get_background_color(int $uid = null)
{
return null;
}
/**
* @param int|null $uid
* @return null
* @see \Friendica\Core\Theme::getThemeColor()
* @TODO Implement this function
*/
function duepuntozero_get_theme_color(int $uid = null)
{
return null;
}