Theme_model::write_css PHP Method

write_css() public method

Write the options to the css file
public write_css ( $file, $data ) : boolean
return boolean
    public function write_css($file, $data)
    {
        if (write_file($file, $data, 'w')) {
            return TRUE;
        }
        return FALSE;
    }