PHP code example of polgarz / google-groups-manager

1. Go to this page and download the library: Download polgarz/google-groups-manager library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

polgarz / google-groups-manager example snippets


'modules' => [
    'google-groups-manager' => [
        'class' => 'polgarz\googlegroups\GoogleGroupsManager',
        'authMethod' => 'service', // can be 'service', or 'oauth' (Service Account, or OAuth2)
        'delegatedUserEmail' => '[email protected]', // oup members
            [
                'groupKey' => '[email protected]',
                'model' => 'app\models\User',
                'scope' => function($query) {
                    return $query->select('email')
                        ->where(['active' => 1]);
                },
            ]
        ],
    ],
],
bash
php yii google-groups-manager/members/add groupKey email
php yii google-groups-manager/members/syncronize
php yii google-groups-manager/members/delete groupKey email
php yii google-groups-manager/members/list groupKey