40 lines
965 B
PHP
40 lines
965 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @package AkeebaBackup
|
||
|
|
* @copyright Copyright (c)2006-2010 Nicholas K. Dionysopoulos
|
||
|
|
* @license GNU General Public License version 3, or later
|
||
|
|
* @version $Id: light.php 92 2010-03-18 10:33:11Z nikosdion $
|
||
|
|
* @since 2.1
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Protect from unauthorized access
|
||
|
|
defined('_JEXEC') or die('Restricted Access');
|
||
|
|
|
||
|
|
// Load framework base classes
|
||
|
|
jimport('joomla.application.component.model');
|
||
|
|
|
||
|
|
class AkeebaModelLight extends JModel
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Returns a list of all configured profiles
|
||
|
|
* @return unknown_type
|
||
|
|
*/
|
||
|
|
function &getProfiles()
|
||
|
|
{
|
||
|
|
$db =& $this->getDBO();
|
||
|
|
$query = "SELECT ".$db->nameQuote('id').", ".$db->nameQuote('description').
|
||
|
|
" FROM ".$db->nameQuote('#__ak_profiles');
|
||
|
|
$db->setQuery($query);
|
||
|
|
$rawList = $db->loadAssocList();
|
||
|
|
|
||
|
|
$options = array();
|
||
|
|
if(!is_array($rawList)) return $options;
|
||
|
|
|
||
|
|
foreach($rawList as $row)
|
||
|
|
{
|
||
|
|
$options[] = JHTML::_('select.option', $row['id'], $row['description']);
|
||
|
|
}
|
||
|
|
|
||
|
|
return $options;
|
||
|
|
}
|
||
|
|
}
|