View of /mambo/branches/4.6/administrator/components/com_mambots/admin.mambots.php
Parent Directory
|
Revision Log
Revision 289 -
(download)
(annotate)
Wed Feb 15 17:56:19 2006 UTC (7 years, 3 months ago) by counterpoint
File size: 12646 byte(s)
Wed Feb 15 17:56:19 2006 UTC (7 years, 3 months ago) by counterpoint
File size: 12646 byte(s)
Fixed bugs in resequencing various types of item
<?php /** * @version $Id: admin.mambots.php,v 1.1 2005/07/22 01:52:34 eddieajau Exp $ * @package Mambo * @subpackage Mambots * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); // ensure user has access to this function if (!($acl->acl_check( 'administration', 'edit', 'users', $my->usertype, 'mambots', 'all' ) | $acl->acl_check( 'administration', 'install', 'users', $my->usertype, 'mambots', 'all' ))) { mosRedirect( 'index2.php', T_('You are not authorized to view this resource.') ); } require_once( $mainframe->getPath( 'admin_html' ) ); $client = mosGetParam( $_REQUEST, 'client', '' ); $cid = mosGetParam( $_POST, 'cid', array(0) ); if (!is_array( $cid )) { $cid = array(0); } switch ( $task ) { case 'new': case 'edit': editMambot( $option, $cid[0], $client ); break; case 'editA': editMambot( $option, $id, $client ); break; case 'save': case 'apply': saveMambot( $option, $client, $task ); break; case 'remove': removeMambot( $cid, $option, $client ); break; case 'cancel': cancelMambot( $option, $client ); break; case 'publish': case 'unpublish': publishMambot( $cid, ($task == 'publish'), $option, $client ); break; case 'orderup': case 'orderdown': orderMambot( $cid[0], ($task == 'orderup' ? -1 : 1), $option, $client ); break; case 'accesspublic': case 'accessregistered': case 'accessspecial': accessMenu( $cid[0], $task, $option, $client ); break; case 'saveorder': saveOrder( $cid ); break; default: viewMambots( $option, $client ); break; } /** * Compiles a list of installed or defined modules */ function viewMambots( $option, $client ) { global $database, $mainframe, $mosConfig_list_limit; global $mosConfig_absolute_path; $limit = $mainframe->getUserStateFromRequest( "viewlistlimit", 'limit', $mosConfig_list_limit ); $limitstart = $mainframe->getUserStateFromRequest( "view{$option}limitstart", 'limitstart', 0 ); $filter_type = $mainframe->getUserStateFromRequest( "filter_type{$option}{$client}", 'filter_type', 0 ); $search = $mainframe->getUserStateFromRequest( "search{$option}{$client}", 'search', '' ); $search = $database->getEscaped( trim( strtolower( $search ) ) ); if ($client == 'admin') { $where[] = "m.client_id = '1'"; $client_id = 1; } else { $where[] = "m.client_id = '0'"; $client_id = 0; } // used by filter if ( $filter_type ) { $where[] = "m.folder = '$filter_type'"; } if ( $search ) { $where[] = "LOWER( m.name ) LIKE '%$search%'"; } // get the total number of records $query = "SELECT count(*) FROM #__mambots As m ". ( count( $where ) ? "\n WHERE " . implode( ' AND ', $where ) : '' ); $database->setQuery( $query ); $total = $database->loadResult(); require_once( $GLOBALS['mosConfig_absolute_path'] . '/administrator/includes/pageNavigation.php' ); $pageNav = new mosPageNav( $total, $limitstart, $limit ); $query = "SELECT m.*, u.name AS editor, g.name AS groupname" . "\n FROM #__mambots AS m" . "\n LEFT JOIN #__users AS u ON u.id = m.checked_out" . "\n LEFT JOIN #__groups AS g ON g.id = m.access" . ( count( $where ) ? "\n WHERE " . implode( ' AND ', $where ) : '' ) . "\n GROUP BY m.id" . "\n ORDER BY m.folder ASC, m.ordering ASC, m.name ASC" . "\n LIMIT $pageNav->limitstart,$pageNav->limit" ; $database->setQuery( $query ); $rows = $database->loadObjectList(); if ($database->getErrorNum()) { echo $database->stderr(); return false; } // get list of Positions for dropdown filter $query = "SELECT folder AS value, folder AS text" . "\n FROM #__mambots" . "\n WHERE client_id = '$client_id'" . "\n GROUP BY folder" . "\n ORDER BY folder" ; $types[] = mosHTML::makeOption( '0', T_('- All Types -') ); $database->setQuery( $query ); $types = array_merge( $types, $database->loadObjectList() ); $lists['type'] = mosHTML::selectList( $types, 'filter_type', 'class="inputbox" size="1" onchange="document.adminForm.submit( );"', 'value', 'text', $filter_type ); HTML_modules::showMambots( $rows, $client, $pageNav, $option, $lists, $search ); } /** * Saves the module after an edit form submit */ function saveMambot( $option, $client, $task ) { global $database; $params = mosGetParam( $_POST, 'params', '' ); if (is_array( $params )) { $txt = array(); foreach ($params as $k=>$v) { $txt[] = "$k=$v"; } $_POST['params'] = mosParameters::textareaHandling( $txt ); } $row = new mosMambot( $database ); if (!$row->bind( $_POST )) { echo "<script> alert('".$row->getError()."'); window.history.go(-1); </script>\n"; exit(); } if (!$row->check()) { echo "<script> alert('".$row->getError()."'); window.history.go(-1); </script>\n"; exit(); } if (!$row->store()) { echo "<script> alert('".$row->getError()."'); window.history.go(-1); </script>\n"; exit(); } $row->checkin(); if ($client == 'admin') { $where = "client_id='1'"; } else { $where = "client_id='0'"; } $row->updateOrder( "folder='$row->folder' AND ordering > -10000 AND ordering < 10000 AND ($where)" ); switch ( $task ) { case 'apply': $msg = sprintf(T_('Successfully Saved changes to Mambot: %s'), $row->name); mosRedirect( 'index2.php?option='. $option .'&client='. $client .'&task=editA&hidemainmenu=1&id='. $row->id, $msg ); case 'save': default: $msg = sprintf(T_('Successfully Saved Mambot: %s'), $row->name); mosRedirect( 'index2.php?option='. $option .'&client='. $client, $msg ); break; } } /** * Compiles information to add or edit a module * @param string The current GET/POST option * @param integer The unique id of the record to edit */ function editMambot( $option, $uid, $client ) { global $database, $my, $mainframe; global $mosConfig_absolute_path; $lists = array(); $row = new mosMambot($database); // load the row from the db table $row->load( $uid ); // fail if checked out not by 'me' if ($row->checked_out && $row->checked_out <> $my->id) { echo "<script>alert(".sprintf(T_('The module %s is currently being edited by another administrator'), $row->title)."); document.location.href='index2.php?option=$option'</script>\n"; exit(0); } if ($client == 'admin') { $where = "client_id='1'"; } else { $where = "client_id='0'"; } // get list of groups if ($row->access == 99 || $row->client_id == 1) { $lists['access'] = T_('Administrator').'<input type="hidden" name="access" value="99" />'; } else { // build the html select list for the group access $lists['access'] = mosAdminMenus::Access( $row ); } if ($uid) { $row->checkout( $my->id ); if ( $row->ordering > -10000 && $row->ordering < 10000 ) { // build the html select list for ordering $query = "SELECT ordering AS value, name AS text" . "\n FROM #__mambots" . "\n WHERE folder='$row->folder'" . "\n AND published > 0" . "\n AND $where" . "\n AND ordering > -10000" . "\n AND ordering < 10000" . "\n ORDER BY ordering" ; $order = mosGetOrderingList( $query ); $lists['ordering'] = mosHTML::selectList( $order, 'ordering', 'class="inputbox" size="1"', 'value', 'text', intval( $row->ordering ) ); } else { $lists['ordering'] = '<input type="hidden" name="ordering" value="'. $row->ordering .'" />'.T_('This mambot cannot be reordered'); } $lists['folder'] = '<input type="hidden" name="folder" value="'. $row->folder .'" />'. $row->folder; // xml file for module $xmlfile = $mosConfig_absolute_path . '/mambots/' .$row->folder . '/' . $row->element .'.xml'; $xmlparser =& new mosXMLDescription ($xmlfile); $row->description = $xmlparser->getDescription('mambot'); } else { $row->folder = ''; $row->ordering = 999; $row->published = 1; $row->description = ''; $folders = mosReadDirectory( $mosConfig_absolute_path . '/mambots/' ); $folders2 = array(); foreach ($folders as $folder) { if (is_dir( $mosConfig_absolute_path . '/mambots/' . $folder ) && ( $folder <> 'CVS' ) ) { $folders2[] = mosHTML::makeOption( $folder ); } } $lists['folder'] = mosHTML::selectList( $folders2, 'folder', 'class="inputbox" size="1"', 'value', 'text', null ); $lists['ordering'] = '<input type="hidden" name="ordering" value="'. $row->ordering .'" />'.T_('New items default to the last place. Ordering can be changed after this item is saved.').''; } $lists['published'] = mosHTML::yesnoRadioList( 'published', 'class="inputbox"', $row->published ); // get params definitions $params =& new mosAdminParameters( $row->params, $mainframe->getPath( 'bot_xml', $row->folder.'/'.$row->element ), 'mambot' ); HTML_modules::editMambot( $row, $lists, $params, $option ); } /** * Deletes one or more mambots * * Also deletes associated entries in the #__mambots table. * @param array An array of unique category id numbers */ function removeMambot( &$cid, $option, $client ) { global $database, $my; if (count( $cid ) < 1) { echo "<script> alert(".T_('Select a module to delete')."); window.history.go(-1);</script>\n"; exit; } mosRedirect( 'index2.php?option=com_installer&element=mambot&client='. $client .'&task=remove&cid[]='. $cid[0] ); } /** * Publishes or Unpublishes one or more modules * @param array An array of unique category id numbers * @param integer 0 if unpublishing, 1 if publishing */ function publishMambot( $cid=null, $publish=1, $option, $client ) { global $database, $my; if (count( $cid ) < 1) { $action = $publish ? T_('publish') : T_('unpublish'); echo "<script> alert(".sprintf(T_('Select a mambot to %s'), $action)."); window.history.go(-1);</script>\n"; exit; } $cids = implode( ',', $cid ); $query = "UPDATE #__mambots SET published='$publish'" . "\n WHERE id IN ($cids)" . "\n AND (checked_out=0 OR (checked_out='$my->id'))" ; $database->setQuery( $query ); if (!$database->query()) { echo "<script> alert('".$database->getErrorMsg()."'); window.history.go(-1); </script>\n"; exit(); } if (count( $cid ) == 1) { $row = new mosMambot( $database ); $row->checkin( $cid[0] ); } mosRedirect( 'index2.php?option='. $option .'&client='. $client ); } /** * Cancels an edit operation */ function cancelMambot( $option, $client ) { global $database; $row = new mosMambot( $database ); $row->bind( $_POST ); $row->checkin(); mosRedirect( 'index2.php?option='. $option .'&client='. $client ); } /** * Moves the order of a record * @param integer The unique id of record * @param integer The increment to reorder by */ function orderMambot( $uid, $inc, $option, $client ) { global $database; // Currently Unsupported if ($client == 'admin') { $where = "client_id='1'"; } else { $where = "client_id='0'"; } $row = new mosMambot( $database ); $row->load( $uid ); $row->move( $inc, "folder='$row->folder' AND ordering > -10000 AND ordering < 10000 AND ($where)" ); mosRedirect( 'index2.php?option='. $option ); } /** * changes the access level of a record * @param integer The increment to reorder by */ function accessMenu( $uid, $access, $option, $client ) { global $database; switch ( $access ) { case 'accesspublic': $access = 0; break; case 'accessregistered': $access = 1; break; case 'accessspecial': $access = 2; break; } $row = new mosMambot( $database ); $row->load( $uid ); $row->access = $access; if ( !$row->check() ) { return $row->getError(); } if ( !$row->store() ) { return $row->getError(); } mosRedirect( 'index2.php?option='. $option ); } function saveOrder( &$cid ) { global $database; $order = mosGetParam( $_POST, 'order', array(0) ); $row = new mosMenu( $database ); $folders = array(); // update ordering values foreach ($cid as $i=>$ciditem) { $row->load( $ciditem ); if ($row->ordering != $order[$i]) { $row->ordering = $order[$i]; if (!$row->store()) { echo "<script> alert('".$database->getErrorMsg()."'); window.history.go(-1); </script>\n"; exit(); } // remember to updateOrder this group $folders[$row->folder][$row->client_id] = $row->id; } } // execute updateOrder for each group foreach ($folders as $folder=>$clients) { foreach ($clients as $client=>$rowid) { $row->updateOrder("folder = '$folder' AND ordering > -10000 AND ordering < 10000 AND client_id = '$client'"); } } // foreach $msg = T_('New ordering saved'); mosRedirect( 'index2.php?option=com_mambots', $msg ); } // saveOrder ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

