Skip to content

Instantly share code, notes, and snippets.

@ahilles107
Created October 19, 2012 11:42
Show Gist options
  • Save ahilles107/3917784 to your computer and use it in GitHub Desktop.
Save ahilles107/3917784 to your computer and use it in GitHub Desktop.
Widget Class
// newscoop/extensions/test-widget/TestWidget.php
<?php
class TestWidget extends Widget // implements IWidget class with only render method
{
public function render()
{
echo 'Test Widget!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment