PHP code example of itinerisltd / acorn-socials

1. Go to this page and download the library: Download itinerisltd/acorn-socials 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/ */

    

itinerisltd / acorn-socials example snippets

diff


declare(strict_types=1);

return [

    /*
    |--------------------------------------------------------------------------
    | Socials
    |--------------------------------------------------------------------------
    |
    | Here, you can define which socials will be used only
    |
    */
-   'socials' => [],
+   'socials' => [
+    'facebook' => [
+       'social' => true/false,  // Controls accessibility on AcornSocials::getSocialPages()
+       'sharable' => true/false, // Controls accessibility on AcornSocials::getSharableSocials()
+     ],
+     'email' => [], // Empty array will make accessible on both
+   ],

];