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
class roundcube( | |
$dbprovider, | |
$dbuser = 'roundcube', | |
$dbpass = unset, | |
$dbname = 'roundcube') { | |
#... | |
$defaults = { | |
config => {}, |
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 | |
/** | |
* Contents for file MODULE.module | |
*/ | |
/** | |
* Implements hook_theme(). | |
* | |
* Define here a theme hook to be implemented within MODULE.theme.inc as function theme_THEMEHOOK($vars) {} |
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 | |
function mycommands_drush_command() { | |
$items = array(); | |
$items['one-command'] = array( | |
'description' => 'A command requiring two arguments.', | |
// Declare required arguments. | |
'arguments' => array( | |
'arg1' => 'arg1 description', | |
'arg2' => 'arg2 description', |
NewerOlder