Instead of doing:
$name = !empty($json['name']) ? $json['name'] : null;
just do:
$name = burntCheck($json['name']);
Instead of doing:
$name = !empty($json['name']) ? $json['name'] : null;
just do:
$name = burntCheck($json['name']);
http://www.adobe.com/digitalimag/pdfs/phscs2ip_colspace.pdf |
@mixin searchButtonImage | |
{ | |
background-image: inline-image('infinitylist/svg/search-icon.svg', unquote('image/svg+xml')); | |
background-repeat: no-repeat; | |
} |
@protocol TFFTagging | |
@property (readonly, nonatomic) NSString *name; | |
@end | |
// Tags in sidebar UI use TFFRecordedTag | |
// Tags in notes UI use TFFAttachableTag | |
// Same interface for what makes a tag, which is its name. |