REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.49 KB
Close
//home/nshryvcy/radiantskinclinics.org/wp-content/plugins/loginizer/lib/hybridauth/User/Activity.php
Text
Base64
<?php /*! * Hybridauth * https://hybridauth.github.io | https://github.com/hybridauth/hybridauth * (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html */ namespace Hybridauth\User; use Hybridauth\Exception\UnexpectedValueException; /** * Hybridauth\User\Activity */ final class Activity { /** * activity id on the provider side, usually given as integer * * @var string */ public $id = null; /** * activity date of creation * * @var string */ public $date = null; /** * activity content as a string * * @var string */ public $text = null; /** * user who created the activity * * @var object */ public $user = null; /** * */ public function __construct() { $this->user = new \stdClass(); // typically, we should have a few information about the user who created the event from social apis $this->user->identifier = null; $this->user->displayName = null; $this->user->profileURL = null; $this->user->photoURL = null; } /** * Prevent the providers adapters from adding new fields. * * @throws UnexpectedValueException * @var string $name * * @var mixed $value * */ public function __set($name, $value) { // phpcs:ignore throw new UnexpectedValueException(sprintf('Adding new property "%s\' to %s is not allowed.', $name, __CLASS__)); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 3
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
Activity.php
1.49 KB
lrw-r--r--
2024-06-27 18:05:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Contact.php
1.49 KB
lrw-r--r--
2024-06-27 18:05:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Profile.php
3.23 KB
lrw-r--r--
2024-06-27 18:05:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).