- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
1.6 KiB
PHP
Executable File
61 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
namespace bizpanda\includes\gates\linkedin;
|
|
|
|
class LinkedinScope
|
|
{
|
|
/**
|
|
* Allows to read basic information about profile, such as name
|
|
*/
|
|
const READ_BASIC_PROFILE = 'r_basicprofile';
|
|
|
|
/**
|
|
* Request a minimum information about the user
|
|
* Use this scope when implementing "Sign In with LI"
|
|
*/
|
|
const READ_LITE_PROFILE = 'r_liteprofile';
|
|
|
|
const READ_FULL_PROFILE = 'r_fullprofile';
|
|
|
|
/**
|
|
* Enables access to email address field
|
|
*/
|
|
const READ_EMAIL_ADDRESS = 'r_emailaddress';
|
|
|
|
/**
|
|
* Manage and delete your data including your profile, posts, invitations, and messages
|
|
*/
|
|
const COMPLIANCE = 'w_compliance';
|
|
/**
|
|
* Enables managing business company
|
|
*/
|
|
const MANAGE_COMPANY = 'rw_organization_admin';
|
|
/**
|
|
* Post, comment and like posts on behalf of an organization.
|
|
*/
|
|
const SHARE_AS_ORGANIZATION = 'w_organization_social';
|
|
|
|
/**
|
|
* Retrieve organizations' posts, comments, and likes.
|
|
*/
|
|
const READ_ORGANIZATION_SHARES = 'r_organization_social';
|
|
|
|
/**
|
|
* Post, comment and like posts on behalf of an authenticated member.
|
|
*/
|
|
const SHARE_AS_USER = 'w_member_social';
|
|
|
|
/**
|
|
* Restricted API!
|
|
*/
|
|
const READ_USER_CONTENT = 'r_member_social';
|
|
|
|
/**
|
|
* Read and write access to ads.
|
|
*/
|
|
const ADS_MANAGEMENT = 'rw_ads';
|
|
const READ_ADS = 'r_ads';
|
|
const READ_LEADS = 'r_ads_leadgen_automation';
|
|
const READ_ADS_REPORTING = 'r_ads_reporting';
|
|
const READ_WRITE_DMP_SEGMENTS = 'rw_dmp_segments';
|
|
} |