Skip to content

Instantly share code, notes, and snippets.

@Cheddam
Created March 10, 2016 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cheddam/a79a596534e0b35be4f0 to your computer and use it in GitHub Desktop.
Save Cheddam/a79a596534e0b35be4f0 to your computer and use it in GitHub Desktop.
<?php
class Page extends SiteTree
{
...
public function setCustomBackgroundColor($input)
{
if (substr($input, 0, 1) == '#') {
return $input;
} else {
return '#' . $input;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment