芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Models/User.php
attributes['ID']; } /** * Get the name of the user. * * @return string */ public function getNameAttribute() { return $this->attributes['display_name']; } /** * Get the email of the user. * * @return string */ public function getEmailAttribute() { return $this->attributes['user_email']; } /** * Get the permalink of the user. * * @return string */ public function getPermalinkAttribute() { return get_edit_user_link($this->attributes['ID']); } }