There is a VS Code Workspace file which ties these repos together when they’re sat in the same directory like this:
project
├── project-wp-docker/
├── project-wp-docs/
├── project-wp-theme/
└── project-wp.code-workspace
| import {Injectable} from '@angular/core'; | |
| // Declare TabsService as a provider in app.module.ts | |
| // Inject TabsService in your class: constructor(public tabs: TabsService){} | |
| // Use the this.tabs.hide() or this.tabs.show() methods wherever you want | |
| @Injectable() | |
| export class TabsService { | |
| constructor() {} | |
| public hide() { |
| <?php | |
| // Installed the need packages with Composer by running: | |
| // $ composer require aws/aws-sdk-php | |
| $filePath = "https://example.com/test.png"; | |
| require 'vendor/autoload.php'; | |
| $bucketName = 'YOUR_BUCKET_NAME'; | |
| $filePath = './YOUR_FILE_NAME.png'; |
| <?php defined('BASEPATH') OR exit('No direct script access allowed'); | |
| /** | |
| * $Id: S3.php 47 2009-07-20 01:25:40Z don.schonknecht $ | |
| * | |
| * Copyright (c) 2008, Donovan Schönknecht. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * |