Merge pull request #5038 from civicrm/CRM-15877
[civicrm-core.git] / CRM / Utils / System / Soap.php
CommitLineData
40d837df
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
40d837df 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
40d837df
CW
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
40d837df
CW
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
40d837df
CW
32 * $Id$
33 *
34 */
35
36/**
37 * Soap specific stuff goes here
38 */
39class CRM_Utils_System_Soap extends CRM_Utils_System_Base {
40
41 /**
42 * UF container variables
43 */
44 static $uf = NULL;
45 static $ufClass = NULL;
46
47 /**
100fef9d 48 * Sets the title of the page
40d837df 49 *
77855840
TO
50 * @param string $title
51 * Title for page.
f4aaa82a
EM
52 * @param $pageTitle
53 *
40d837df
CW
54 * @paqram string $pageTitle
55 *
56 * @return void
40d837df 57 */
00be9182 58 public function setTitle($title, $pageTitle) {
d5cc0fc2 59 return NULL;
40d837df
CW
60 }
61
62 /**
100fef9d 63 * Given a permission string, check for access requirements
40d837df 64 *
77855840
TO
65 * @param string $str
66 * The permission to check.
40d837df 67 *
d5cc0fc2 68 * @return bool
a6c01b45 69 * true if yes, else false
40d837df 70 */
00be9182 71 public function checkPermission($str) {
40d837df
CW
72 return TRUE;
73 }
74
75 /**
76 * Append an additional breadcrumb tag to the existing breadcrumb
77 *
78 * @param string $title
79 * @param string $url
80 *
81 * @return void
40d837df 82 */
00be9182 83 public function appendBreadCrumb($title, $url) {
d5cc0fc2 84 return NULL;
40d837df
CW
85 }
86
87 /**
88 * Append a string to the head of the html file
89 *
77855840
TO
90 * @param string $head
91 * The new string to be appended.
40d837df
CW
92 *
93 * @return void
40d837df 94 */
00be9182 95 public function addHTMLHead($head) {
d5cc0fc2 96 return NULL;
40d837df
CW
97 }
98
99 /**
100 * Generate an internal CiviCRM URL
101 *
5a4f6742
CW
102 * @param string $path
103 * The path being linked to, such as "civicrm/add".
104 * @param string $query
105 * A query string to append to the link.
106 * @param bool $absolute
107 * Whether to force the output to be an absolute link (beginning with http:).
40d837df
CW
108 * Useful for links that will be displayed outside the site, such as in an
109 * RSS feed.
5a4f6742
CW
110 * @param string $fragment
111 * A fragment identifier (named anchor) to append to the link.
40d837df 112 *
a6c01b45
CW
113 * @return string
114 * an HTML string containing a link to the given path.
40d837df 115 */
00be9182 116 public function url($path = NULL, $query = NULL, $absolute = TRUE, $fragment = NULL) {
40d837df
CW
117 if (isset(self::$ufClass)) {
118 $className = self::$ufClass;
119 $url = $className::url($path, $query, $absolute, $fragment);
120 return $url;
121 }
122 else {
123 return NULL;
124 }
125 }
126
127 /**
100fef9d 128 * Figure out the post url for the form
40d837df 129 *
a6c01b45
CW
130 * @return string
131 * the url to post the form
40d837df 132 */
00be9182 133 public function postURL($action) {
40d837df
CW
134 return NULL;
135 }
136
137 /**
100fef9d 138 * Set the email address of the user
40d837df 139 *
77855840
TO
140 * @param object $user
141 * Handle to the user object.
40d837df
CW
142 *
143 * @return void
40d837df 144 */
e7292422
TO
145 public function setEmail(&$user) {
146 }
40d837df
CW
147
148 /**
149 * Authenticate a user against the real UF
150 *
77855840
TO
151 * @param string $name
152 * Login name.
153 * @param string $pass
154 * Login password.
40d837df 155 *
a6c01b45
CW
156 * @return array
157 * Result array
40d837df 158 */
00be9182 159 public function &authenticate($name, $pass) {
40d837df
CW
160 if (isset(self::$ufClass)) {
161 $className = self::$ufClass;
162 $result =& $className::authenticate($name, $pass);
163 return $result;
164 }
165 else {
166 return NULL;
167 }
168 }
169
170 /**
171 * Swap the current UF for soap
40d837df
CW
172 */
173 public function swapUF() {
174 $config = CRM_Core_Config::singleton();
175
176 self::$uf = $config->userFramework;
177 $config->userFramework = 'Soap';
178
179 self::$ufClass = $config->userFrameworkClass;
180 $config->userFrameworkClass = 'CRM_Utils_System_Soap';
181 }
182
183 /**
184 * Get the locale set in the hosting CMS
185 *
a6c01b45
CW
186 * @return null
187 * as the language is set elsewhere
40d837df 188 */
00be9182 189 public function getUFLocale() {
40d837df
CW
190 return NULL;
191 }
192
193 /**
194 * Get user login URL for hosting CMS (method declared in each CMS system class)
195 *
77855840
TO
196 * @param string $destination
197 * If present, add destination to querystring (works for Drupal only).
40d837df 198 *
f4aaa82a 199 * @throws Exception
d5cc0fc2 200 * @return;
a6c01b45 201 * loginURL for the current CMS
40d837df
CW
202 */
203 public function getLoginURL($destination = '') {
204 throw new Exception("Method not implemented: getLoginURL");
205 }
96025800 206
40d837df 207}