You are here

function _follow_css_get_path in Follow 7.2

Helper function to generate the path to the follow css.

4 calls to _follow_css_get_path()
FollowTestCase::_testConfigureForm in tests/follow.test
FollowTestCase::_testCssCallback in tests/follow.test
FollowTestCase::_testInstall in tests/follow.test
_follow_links_element in ./follow.inc
Helper function to build a follow links element.

File

./follow.inc, line 15
Follow module API and helper functions.

Code

function _follow_css_get_path() {
  $directory_path = file_stream_wrapper_get_instance_by_scheme('public')
    ->getDirectoryPath();
  return $directory_path . '/css/follow.css';
}