50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Horde_Form for creating address books.
|
|
*
|
|
* See the enclosed file LICENSE for license information (ASL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/apache.
|
|
*
|
|
* @package Turba
|
|
*/
|
|
|
|
/**
|
|
* The Turba_Form_CreateAddressBook class provides the form for
|
|
* creating an address book.
|
|
*
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @package Turba
|
|
*/
|
|
class Turba_Form_CreateAddressBook extends Horde_Form
|
|
{
|
|
public function __construct($vars)
|
|
{
|
|
parent::__construct($vars, _("Create Address Book"));
|
|
|
|
$this->addVariable(_("Name"), 'name', 'text', true);
|
|
$this->addVariable(_("Description"), 'description', 'longtext', false, false, null, array(4, 60));
|
|
|
|
$this->setButtons(array(_("Create")));
|
|
}
|
|
|
|
/**
|
|
* @return Horde_Share The new share object.
|
|
* @throws Turba_Exception
|
|
*/
|
|
public function execute()
|
|
{
|
|
// Need a clean cfgSources array
|
|
$cfgSources = Turba::availableSources();
|
|
$driver = $GLOBALS['injector']
|
|
->getInstance('Turba_Factory_Driver')
|
|
->createFromConfig($cfgSources[$GLOBALS['conf']['shares']['source']]);
|
|
$params = array(
|
|
'params' => array('source' => $GLOBALS['conf']['shares']['source']),
|
|
'name' => $this->_vars->get('name'),
|
|
'desc' => $this->_vars->get('description'),
|
|
);
|
|
return $driver->createShare(strval(new Horde_Support_Randomid()),
|
|
$params);
|
|
}
|
|
}
|