get(); } public function isDropbox() { // This logic must be mirrored in external_services.js return $this->service_type == self::DROPBOX; } public function isFacebook() { // This logic must be mirrored in external_services.js return $this->service_type == self::FACEBOOK; } public function isGoogle() { // This logic must be mirrored in external_services.js return $this->service_type == self::GOOGLE; } public function isTwitter() { // This logic must be mirrored in external_services.js return $this->service_type == self::TWITTER; } }