Adding back configtest.php which was actually useful for now

8.0.x
Greg Dunlap 2011-09-05 16:32:12 +02:00
parent 619cbae3bc
commit dc628f0e94
1 changed files with 36 additions and 0 deletions

36
configtest.php Normal file
View File

@ -0,0 +1,36 @@
<?php
define('DRUPAL_ROOT', getcwd());
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
config_write_signed_file_storage_key();
//echo config_sign_data('onetwothree');
$sfs = new SignedFileStorage('one.two');
// Write and read
$sfs->write('nothing');
echo $sfs->read() . PHP_EOL;
$existing_content = file_get_contents($sfs->getFilePath());
echo $sfs->getFilePath() . PHP_EOL;
// Modify and resign
file_put_contents($sfs->getFilePath(), $existing_content . 'extra');
$sfs->resign();
echo $sfs->read() . PHP_EOL;
// Fail
////file_put_contents($sfs->getFilePath(), $existing_content . 'extra');
//echo $sfs->read() . PHP_EOL;
print_r(get_signed_file_storage_names_with_prefix());
print '<hr>';
$config = config('foo.bar');
$config->foo = 'bar';
$config->save();
echo config('foo.bar')->foo;
echo '<br>That should be bar';