hypejunction / ui_icons
Standardized icon markup
Installs: 62
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:elgg-plugin
Requires
- php: >=5.5
This package is auto-updated.
Last update: 2024-10-29 03:58:46 UTC
README
Features
- Standardized icons display and markup
- Forces
large
icon to be 200x200 square - Adds
extra_large
icon with 325 with that is resizes similar to master - Allows you to choose between
square
,rounded
,circle
corners - Replaces default user, group and question mark icons with a scalable SVG image
Usage
Display an icon with defualt corner setting
// 'rounded' and 'circle' corners will only be displayed with tiny, small and medium icon sizes echo elgg_view_entity_icon($entity, 'small');
Force corner setting
echo elgg_view_entity_icon($entity, 'large', array( 'corners' => 'circle', ));
Replacing default icon
To replace the default icon, simply overwrite the svg view. Just place an svg icon with the same name and in the same location in your plugin.