Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[phoenix-dev] Facebook 'Like' button for project pages

We've recently added a small function in $App to include the Facebook "Like" button on any page. You can see both the standard and compact versions on this page: http://eclipse.org/phoenix/

Please note that although you can add the 'Like' button to any page, we recommend only placing it on the project's home page.


Adding Facebook Like Button

In your page, simply add the following in the HTML section to get a Like button with faces:

   <?= $App->getFacebookLikeButtonHTML() ?> 

Or add parameters to get a smaller button without faces:

   <?= $App->getFacebookLikeButtonHTML("compact", false) ?>

Back to the top