*/
public $neededModules = ['FACEBOOK_PUBLIC_KEY', 'FACEBOOK_PRIVATE_KEY'];
+ /**
+ * @inheritDoc
+ */
+ public function readParameters() {
+ parent::readParameters();
+
+ if (WCF::getSession()->spiderID) {
+ throw new IllegalLinkException();
+ }
+ }
+
/**
* @inheritDoc
*/
*/
public $neededModules = ['GITHUB_PUBLIC_KEY', 'GITHUB_PRIVATE_KEY'];
+ /**
+ * @inheritDoc
+ */
+ public function readParameters() {
+ parent::readParameters();
+
+ if (WCF::getSession()->spiderID) {
+ throw new IllegalLinkException();
+ }
+ }
+
/**
* @inheritDoc
*/
*/
public $neededModules = ['GOOGLE_PUBLIC_KEY', 'GOOGLE_PRIVATE_KEY'];
+ /**
+ * @inheritDoc
+ */
+ public function readParameters() {
+ parent::readParameters();
+
+ if (WCF::getSession()->spiderID) {
+ throw new IllegalLinkException();
+ }
+ }
+
/**
* @inheritDoc
*/
*/
public $neededModules = ['TWITTER_PUBLIC_KEY', 'TWITTER_PRIVATE_KEY'];
+ /**
+ * @inheritDoc
+ */
+ public function readParameters() {
+ parent::readParameters();
+
+ if (WCF::getSession()->spiderID) {
+ throw new IllegalLinkException();
+ }
+ }
+
/**
* @inheritDoc
*/