You are here

private function AddThis::getAttributeUrl in AddThis 7.4

1 call to AddThis::getAttributeUrl()
AddThis::getAddThisAttributesMarkup in classes/AddThis.php

File

classes/AddThis.php, line 397
An AddThis-class.

Class

AddThis
@file An AddThis-class.

Code

private function getAttributeUrl($options) {
  if (isset($options['#url'])) {
    return array(
      self::URL_ATTRIBUTE => $options['#url'],
    );
  }
  return array();
}