This file contains 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 | |
class MemberProfileFieldExtension extends DataExtension { | |
public static $db = array( | |
'SortOrder' => 'Int' | |
); | |
function updateCMSFields(FieldList $fields) { | |
$fields->push(new NumericField('SortOrder', 'SortOrder')); |
This file contains 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
# install silverstripe + common modules from github | |
# usage sh install_silverstripe.sh <folder_name> <tag/branch> | |
# examples: | |
# sh install_silverstripe.sh some_folder tags/2.4.5 | |
# sh install_silverstripe.sh some_folder master | |
#set up project base folder | |
git clone [email protected]:silverstripe/silverstripe-installer.git $1 | |
cd $1 | |
git checkout $2 |