This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| read -p "Please enter new hostname for this server [wptmp.bytemedia.co.nz]: " NEWHOSTNAME | |
| NEWHOSTNAME=${NEWHOSTNAME:-wptmp.bytemedia.co.nz} | |
| read -p "Please enter folder name for project [project]: " PROJECT_NAME | |
| PROJECT_NAME=${PROJECT_NAME:-project} | |
| DB_NAME=$PROJECT_NAME | |
| DB_USER="wpuser" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| read -p "Please enter new hostname for this server [sstmp.bytemedia.co.nz]: " NEWHOSTNAME | |
| NEWHOSTNAME=${NEWHOSTNAME:-sstmp.bytemedia.co.nz} | |
| read -p "Please enter folder name for project [project]: " PROJECT_NAME | |
| PROJECT_NAME=${PROJECT_NAME:-project} | |
| DB_NAME=$PROJECT_NAME | |
| DB_USER="ssuser" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| namespace App\Extensions; | |
| use SilverStripe\Core\Config\Config; | |
| use SilverStripe\ORM\ArrayList; | |
| use SilverStripe\ORM\DataExtension; | |
| use SilverStripe\ORM\DataList; | |
| use SilverStripe\ORM\DataObject; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| namespace App\Extensions; | |
| /* | |
| Config | |
| ``` | |
| SilverStripe\ORM\DataList: | |
| extensions: | |
| - App\Extensions\DataFilterAnyMultiExtension | |
| ``` |