Cleanup phpdoc comments
[civicrm-core.git] / CRM / Core / Permission / WordPress.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 *
38 */
39class CRM_Core_Permission_WordPress extends CRM_Core_Permission_Base {
40 /**
100fef9d 41 * Given a permission string, check for access requirements
6a488035
TO
42 *
43 * @param string $str the permission to check
44 *
45 * @return boolean true if yes, else false
46 * @access public
47 */
48 function check($str) {
2efcf0c2 49 // Generic cms 'administer users' role tranlates to 'administrator' WordPress role
085823c1 50 $str = $this->translatePermission($str, 'WordPress', array(
88da51c2 51 'administer users' => 'administrator',
085823c1
TO
52 ));
53 if ($str == CRM_Core_Permission::ALWAYS_DENY_PERMISSION) {
54 return FALSE;
55 }
56 if ($str == CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION) {
57 return TRUE;
58 }
59
8518b09b
TO
60 require_once ABSPATH . WPINC . '/pluggable.php';
61
6a488035
TO
62 // for administrators give them all permissions
63 if (!function_exists('current_user_can')) {
64 return TRUE;
65 }
66
67 if (current_user_can('super admin') || current_user_can('administrator')) {
68 return TRUE;
69 }
70
71 // Make string lowercase and convert spaces into underscore
629b3d4d 72 $str = CRM_Utils_String::munge(strtolower($str));
6a488035
TO
73
74 if ( is_user_logged_in() ) {
75 // Check whether the logged in user has the capabilitity
76 if (current_user_can($str)) {
77 return TRUE;
78 }
79 }
80 else {
81 //check the capabilities of Anonymous user)
82 $roleObj = new WP_Roles();
83 if (
84 $roleObj->get_role('anonymous_user') != NULL &&
85 array_key_exists($str, $roleObj->get_role('anonymous_user')->capabilities)
86 ) {
87 return TRUE;
88 }
89 }
90 return FALSE;
91 }
73950aa0 92 /**
93 * {@inheritDoc}
94 */
95 public function isModulePermissionSupported() {
0d3d1f9d 96 return TRUE;
73950aa0 97 }
0d3d1f9d 98
73950aa0 99 /**
100 * {@inheritdoc}
101 */
102 function upgradePermissions($permissions) {
0d3d1f9d 103 return;
73950aa0 104 }
6a488035 105}