MarkE Posted January 14, 2024 Share Posted January 14, 2024 Does anyone know how I can insertt a font awesome icon into notes text for a field? For example, I currently have this in the definition of a config inputfield for a module: $f->notes = $this->_("Needs to be a page with Category template (right-caret icon). Create one if it doesn't already exist."); I would like to show the actual icon rather than just describe it Link to comment Share on other sites More sharing options...
bernhard Posted January 14, 2024 Share Posted January 14, 2024 <?php $f->entityEncodeText = false; $f->notes = str_replace( "[icon]", "<i class='fa fa-check'></i>", $this->_("Some text [icon] Some more Text.") ); 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now