Lines:
1 to 61 of 61
<?php /** * @author Mike Cochrane <mikec@mikenz.geek.nz> * @author Nick Pope <nick@nickpope.me.uk> * @copyright Copyright © 2010, Mike Cochrane, Nick Pope * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0 * @package Twitter.Text */ namespace Twitter\Text; /* class Autolink */ /* function Autolink::create() – Provides fluent method chaining. */ /* function Autolink::__construct() – Reads in a tweet to be parsed and converted to contain links. */ /* function Autolink::setToAllLinkClasses() – Set CSS class to all link types. */ /* function Autolink::getURLClass() – CSS class for auto-linked URLs. */ /* function Autolink::setURLClass() – CSS class for auto-linked URLs. */ /* function Autolink::getUsernameClass() – CSS class for auto-linked username URLs. */ /* function Autolink::setUsernameClass() – CSS class for auto-linked username URLs. */ /* function Autolink::getListClass() – CSS class for auto-linked username/list URLs. */ /* function Autolink::setListClass() – CSS class for auto-linked username/list URLs. */ /* function Autolink::getHashtagClass() – CSS class for auto-linked hashtag URLs. */ /* function Autolink::setHashtagClass() – CSS class for auto-linked hashtag URLs. */ /* function Autolink::getCashtagClass() – CSS class for auto-linked cashtag URLs. */ /* function Autolink::setCashtagClass() – CSS class for auto-linked cashtag URLs. */ /* function Autolink::getNoFollow() – Whether to include the value ‘nofollow’ in the ‘rel’ attribute. */ /* function Autolink::setNoFollow() – Whether to include the value ‘nofollow’ in the ‘rel’ attribute. */ /* function Autolink::getExternal() – Whether to include the value ‘external’ in the ‘rel’ attribute. */ /* function Autolink::setExternal() – Whether to include the value ‘external’ in the ‘rel’ attribute. */ /* function Autolink::getTarget() – The scope to open the link in. */ /* function Autolink::setTarget() – The scope to open the link in. */ /* function Autolink::isUsernameIncludeSymbol() – */ /* function Autolink::setUsernameIncludeSymbol() – Set if the at mark ‘@’ should be included in the link (false by default) */ /* function Autolink::getSymbolTag() – */ /* function Autolink::setSymbolTag() – Set HTML tag to be applied around #/@/# symbols in hashtags/usernames/lists/cashtag */ /* function Autolink::getTextWithSymbolTag() – */ /* function Autolink::setTextWithSymbolTag() – Set HTML tag to be applied around text part of hashtags/usernames/lists/cashtag */ /* function Autolink::autoLinkEntities() – Autolink with entities */ /* function Autolink::autoLinkWithJson() – Auto-link hashtags, URLs, usernames and lists, with JSON entities. */ /* function Autolink::object2array() – convert Object to Array */ /* function Autolink::autoLink() – Auto-link hashtags, URLs, usernames and lists. */ /* function Autolink::autoLinkUsernamesAndLists() – Auto-link the @username and @username/list references in the provided text. Links to @username references will have the usernameClass CSS classes added. Links to @username/list references will have the listClass CSS class added. */ /* function Autolink::autoLinkHashtags() – Auto-link #hashtag references in the provided Tweet text. The #hashtag links will have the hashtagClass CSS class added. */ /* function Autolink::autoLinkURLs() – Auto-link URLs in the Tweet text provided. */ /* function Autolink::autoLinkCashtags() – Auto-link $cashtag references in the provided Tweet text. The $cashtag links will have the cashtagClass CSS class added. */ /* function Autolink::linkToUrl() – */ /* function Autolink::linkToHashtag() – */ /* function Autolink::linkToMentionAndList() – */ /* function Autolink::linkToCashtag() – */ /* function Autolink::linkToText() – */ /* function Autolink::linkToTextWithSymbol() – */ /* function Autolink::getRel() – get rel attribute */ /* function Autolink::setRel() – Set rel attribute. */ /* function Autolink::escapeHTML() – html escape */