/administrator/components/com_categories/controllers/category.php

https://bitbucket.org/kraymitchell/fcd · PHP · 176 lines · 71 code · 21 blank · 84 comment · 11 complexity · 10343d19f212f1471eb6221a58ed0302 MD5 · raw file

  1. <?php
  2. /**
  3. * @package Joomla.Administrator
  4. * @subpackage com_categories
  5. *
  6. * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. defined('_JEXEC') or die;
  10. jimport('joomla.application.component.controllerform');
  11. /**
  12. * The Category Controller
  13. *
  14. * @package Joomla.Administrator
  15. * @subpackage com_categories
  16. * @since 1.6
  17. */
  18. class CategoriesControllerCategory extends JControllerForm
  19. {
  20. /**
  21. * The extension for which the categories apply.
  22. *
  23. * @var string
  24. * @since 1.6
  25. */
  26. protected $extension;
  27. /**
  28. * Constructor.
  29. *
  30. * @param array $config An optional associative array of configuration settings.
  31. *
  32. * @since 1.6
  33. * @see JController
  34. */
  35. public function __construct($config = array())
  36. {
  37. parent::__construct($config);
  38. // Guess the JText message prefix. Defaults to the option.
  39. if (empty($this->extension))
  40. {
  41. $this->extension = JRequest::getCmd('extension', 'com_content');
  42. }
  43. }
  44. /**
  45. * Method to check if you can add a new record.
  46. *
  47. * @param array $data An array of input data.
  48. *
  49. * @return boolean
  50. *
  51. * @since 1.6
  52. */
  53. protected function allowAdd($data = array())
  54. {
  55. $user = JFactory::getUser();
  56. return ($user->authorise('core.create', $this->extension) || count($user->getAuthorisedCategories($this->extension, 'core.create')));
  57. }
  58. /**
  59. * Method to check if you can edit a record.
  60. *
  61. * @param array $data An array of input data.
  62. * @param string $key The name of the key for the primary key.
  63. *
  64. * @return boolean
  65. *
  66. * @since 1.6
  67. */
  68. protected function allowEdit($data = array(), $key = 'parent_id')
  69. {
  70. // Initialise variables.
  71. $recordId = (int) isset($data[$key]) ? $data[$key] : 0;
  72. $user = JFactory::getUser();
  73. $userId = $user->get('id');
  74. // Check general edit permission first.
  75. if ($user->authorise('core.edit', $this->extension))
  76. {
  77. return true;
  78. }
  79. // Check specific edit permission.
  80. if ($user->authorise('core.edit', $this->extension . '.category.' . $recordId))
  81. {
  82. return true;
  83. }
  84. // Fallback on edit.own.
  85. // First test if the permission is available.
  86. if ($user->authorise('core.edit.own', $this->extension . '.category.' . $recordId) || $user->authorise('core.edit.own', $this->extension))
  87. {
  88. // Now test the owner is the user.
  89. $ownerId = (int) isset($data['created_user_id']) ? $data['created_user_id'] : 0;
  90. if (empty($ownerId) && $recordId)
  91. {
  92. // Need to do a lookup from the model.
  93. $record = $this->getModel()->getItem($recordId);
  94. if (empty($record))
  95. {
  96. return false;
  97. }
  98. $ownerId = $record->created_user_id;
  99. }
  100. // If the owner matches 'me' then do the test.
  101. if ($ownerId == $userId)
  102. {
  103. return true;
  104. }
  105. }
  106. return false;
  107. }
  108. /**
  109. * Method to run batch operations.
  110. *
  111. * @param object $model The model.
  112. *
  113. * @return boolean True if successful, false otherwise and internal error is set.
  114. *
  115. * @since 1.6
  116. */
  117. public function batch($model = null)
  118. {
  119. JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
  120. // Set the model
  121. $model = $this->getModel('Category');
  122. // Preset the redirect
  123. $this->setRedirect('index.php?option=com_categories&view=categories&extension=' . $this->extension);
  124. return parent::batch($model);
  125. }
  126. /**
  127. * Gets the URL arguments to append to an item redirect.
  128. *
  129. * @param integer $recordId The primary key id for the item.
  130. * @param string $urlVar The name of the URL variable for the id.
  131. *
  132. * @return string The arguments to append to the redirect URL.
  133. *
  134. * @since 1.6
  135. */
  136. protected function getRedirectToItemAppend($recordId = null, $urlVar = 'id')
  137. {
  138. $append = parent::getRedirectToItemAppend($recordId);
  139. $append .= '&extension=' . $this->extension;
  140. return $append;
  141. }
  142. /**
  143. * Gets the URL arguments to append to a list redirect.
  144. *
  145. * @return string The arguments to append to the redirect URL.
  146. *
  147. * @since 1.6
  148. */
  149. protected function getRedirectToListAppend()
  150. {
  151. $append = parent::getRedirectToListAppend();
  152. $append .= '&extension=' . $this->extension;
  153. return $append;
  154. }
  155. }