You are here

function linkit_get_active_profile in Linkit 7.3

Get the currently active profile.

Return value

A LinkitProfile object if there is one set.

See also

linkit_set_active_profile()

3 calls to linkit_get_active_profile()
linkit_autocomplete_absolute_url in ./linkit.module
Retrieve the result object from an absolute URL. Both internal and external paths work.
linkit_autocomplete_search_plugins in ./linkit.module
Perform autocomplete search with the Linkit search plugins.
linkit_dashboard_form in ./linkit.module
Create the dashboard page.

File

./linkit.module, line 226
Main file for Linkit module.

Code

function linkit_get_active_profile() {
  return drupal_static('linkit_active_profile');
}