Changeset 853248
- Timestamp:
- 02/07/2014 01:41:41 PM (12 years ago)
- Location:
- integrator3/trunk
- Files:
-
- 6 edited
-
integrator.php (modified) (40 diffs)
-
integrator/api.php (modified) (17 diffs)
-
integrator/curl.php (modified) (25 diffs)
-
integrator/helper.php (modified) (8 diffs)
-
integrator/uri.php (modified) (34 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
integrator3/trunk/integrator.php
r835472 r853248 4 4 * 5 5 * @package Integrator 3.0 - Wordpress Package 6 * @copyright 2009 - 201 2Go Higher Information Services. All rights reserved.6 * @copyright 2009 - 2014 Go Higher Information Services. All rights reserved. 7 7 * @license ${p.PROJECT_LICENSE} 8 * @version 3.0. 19( $Id: integrator.php 274 2013-08-21 20:33:55Z steven_gohigher $ )8 * @version 3.0.20 ( $Id: integrator.php 274 2013-08-21 20:33:55Z steven_gohigher $ ) 9 9 * @author Go Higher Information Services 10 10 * @since 3.0.0 … … 19 19 Author: Go Higher Information Services 20 20 Author URI: https://www.gohigheris.com/ 21 Version: 3.0. 1921 Version: 3.0.20 22 22 */ 23 23 24 define( 'INTEGRATOR_VERSION', "3.0. 19" );24 define( 'INTEGRATOR_VERSION', "3.0.20" ); 25 25 26 26 /** 27 27 * Integrator Class 28 * @version 3.0. 1928 * @version 3.0.20 29 29 * 30 30 * @since 3.0.0 … … 41 41 * Constructor method 42 42 * @access public 43 * @version 3.0. 1943 * @version 3.0.20 44 44 * 45 45 * @since 3.0.0 … … 107 107 * Initializes in admin 108 108 * @access public 109 * @version 3.0. 19109 * @version 3.0.20 110 110 * 111 111 * @since 3.0.0 … … 121 121 * Create the meta box for the Integrated Link admin area 122 122 * @access public 123 * @version 3.0. 19123 * @version 3.0.20 124 124 * 125 125 * @since 3.0.0 … … 157 157 * Handles the Integrated Link field in admin area and sets it to meta data 158 158 * @access public 159 * @version 3.0. 19159 * @version 3.0.20 160 160 * @param integer - $post_id: the post id passed by admin area 161 161 * @param array - $post: contains description of the post … … 201 201 * Place holder for adding javascript to the admin header 202 202 * @access public 203 * @version 3.0. 19203 * @version 3.0.20 204 204 * 205 205 * @since 3.0.0 … … 214 214 * Generates the menu item 215 215 * @access public 216 * @version 3.0. 19216 * @version 3.0.20 217 217 * 218 218 * @since 3.0.0 … … 227 227 * Renders and handles the options page for the Integrator 228 228 * @access public 229 * @version 3.0. 19229 * @version 3.0.20 230 230 * 231 231 * @since 3.0.0 … … 280 280 * Method to grab the cnxn pages from the Integrator 281 281 * @access public 282 * @version 3.0. 19282 * @version 3.0.20 283 283 * 284 284 * @return array … … 308 308 * Method to get a route from the Integrator 309 309 * @access public 310 * @version 3.0. 19310 * @version 3.0.20 311 311 * 312 312 * @return result of API call … … 329 329 * Intercepts calls for the intlink post type and redirects 330 330 * @access public 331 * @version 3.0. 19331 * @version 3.0.20 332 332 * 333 333 * @since 3.0.0 … … 428 428 * Grabs the logged in cookies when passed through the set_logged_in_cookie action in WP 429 429 * @access public 430 * @version 3.0. 19430 * @version 3.0.20 431 431 * @param string - $cookie: the value of the set cookie 432 432 * … … 443 443 * Action handler for logging into the site 444 444 * @access public 445 * @version 3.0. 19445 * @version 3.0.20 446 446 * @param string - $redirect_to: the redirect url 447 447 * @param bool - $isset: if the $redirect has been sent back (login started) … … 500 500 * Action handler for logging out and redirecting to Integrator 501 501 * @access public 502 * @version 3.0. 19502 * @version 3.0.20 503 503 * 504 504 * @since 3.0.0s … … 564 564 * Perform actual deletion 565 565 * @access public 566 * @version 3.0. 19566 * @version 3.0.20 567 567 * @param integer - $user_id: the user id of the user we just deleted in WP 568 568 * … … 589 589 * Grab a copy of the user before we delete them 590 590 * @access public 591 * @version 3.0. 19591 * @version 3.0.20 592 592 * @param integer - $user_id: contains the user id of the user to delete 593 593 * … … 605 605 * Update user information on Integrator 606 606 * @access public 607 * @version 3.0. 19607 * @version 3.0.20 608 608 * @param integer - $user_id: id of user 609 609 * @param array - $post: the original data of user … … 633 633 * Validates user information prior to saving 634 634 * @access public 635 * @version 3.0. 19635 * @version 3.0.20 636 636 * @param object - $errors: (reference) WP_Error object 637 637 * @param boolean - $update: if this is an update then true … … 684 684 * Permits getting of variables 685 685 * @access public 686 * @version 3.0. 19686 * @version 3.0.20 687 687 * @param string - $var: the name of the variable to get 688 688 * @param mixed - $default: the default value if not set … … 700 700 * Permits setting of variables 701 701 * @access public 702 * @version 3.0. 19702 * @version 3.0.20 703 703 * @param string - $var: the name of the variable to set 704 704 * @param mixed - $value: the value to set … … 725 725 * Easy wrapper for pinging Integrator 726 726 * @access private 727 * @version 3.0. 19727 * @version 3.0.20 728 728 * @param boolean - $updated: if we are updating settings, set to true to grab from POST 729 729 * … … 740 740 * Convenient file includer 741 741 * @access private 742 * @version 3.0. 19742 * @version 3.0.20 743 743 * 744 744 * @since 3.0.0 … … 787 787 * Method to check to see if we are active or not 788 788 * @access private 789 * @version 3.0. 19789 * @version 3.0.20 790 790 * 791 791 * @return boolean … … 812 812 * Easy wrapper for updating settings on the Integrator 813 813 * @access private 814 * @version 3.0. 19814 * @version 3.0.20 815 815 * @param boolean - $updated: if we are updating settings, set to true to grab from POST 816 816 * … … 839 839 /** 840 840 * Integrator XMLRPC Handler 841 * @version 3.0. 19841 * @version 3.0.20 842 842 * 843 843 * @since 3.0.0 … … 850 850 * Takes a set of credentials and authenticates them against WP 851 851 * @access public 852 * @version 3.0. 19852 * @version 3.0.20 853 853 * @param array - $args: the arguments passed via XMLRPC Server 854 854 * … … 881 881 * Returns this version of the Integrator 882 882 * @access public 883 * @version 3.0. 19883 * @version 3.0.20 884 884 * @param array - $args: the arguments passed via XMLRPC Server 885 885 * … … 896 896 * Gets the Wordpress menu tree 897 897 * @access public 898 * @version 3.0. 19898 * @version 3.0.20 899 899 * @param array of arguments passed via XML-RPC 900 900 * … … 945 945 * Gets missing credentials for user 946 946 * @access public 947 * @version 3.0. 19947 * @version 3.0.20 948 948 * @param array of arguments passed via XML-RPC 949 949 * … … 974 974 * Log a user in first 975 975 * @access public 976 * @version 3.0. 19976 * @version 3.0.20 977 977 * @param array - $args: the arguments passed via XMLRPC Server 978 978 * … … 1012 1012 * Ping interface 1013 1013 * @access public 1014 * @version 3.0. 191014 * @version 3.0.20 1015 1015 * @param array - $args: the arguments passed via XMLRPC Server 1016 1016 * … … 1040 1040 * Create a new user in WP 1041 1041 * @access public 1042 * @version 3.0. 191042 * @version 3.0.20 1043 1043 * @param array - $args: the arguments passed via XMLRPC Server 1044 1044 * … … 1068 1068 * Find a user in WP 1069 1069 * @access public 1070 * @version 3.0. 191070 * @version 3.0.20 1071 1071 * @param array - $args: the arguments passed via XMLRPC Server 1072 1072 * … … 1092 1092 * Method to remove a user from WP 1093 1093 * @access public 1094 * @version 3.0. 191094 * @version 3.0.20 1095 1095 * @param array - $args: the arguments passed via XMLRPC Server 1096 1096 * … … 1125 1125 * Method to search for a user 1126 1126 * @access public 1127 * @version 3.0. 191127 * @version 3.0.20 1128 1128 * @param array - $args: the arguments passed via XMLRPC Server 1129 1129 * … … 1147 1147 * Updates a user in WP 1148 1148 * @access public 1149 * @version 3.0. 191149 * @version 3.0.20 1150 1150 * @param array - $args: the arguments passed via XMLRPC Server 1151 1151 * … … 1194 1194 * Provides for new user validation 1195 1195 * @access public 1196 * @version 3.0. 191196 * @version 3.0.20 1197 1197 * @param array - $args: the arguments passed via XMLRPC Server 1198 1198 * … … 1224 1224 * Provides for existing user validation on changes 1225 1225 * @access public 1226 * @version 3.0. 191226 * @version 3.0.20 1227 1227 * @param array - $args: the arguments passed via XMLRPC Server 1228 1228 * … … 1352 1352 * Integrator initilization 1353 1353 * @access public 1354 * @version 3.0. 191354 * @version 3.0.20 1355 1355 * 1356 1356 * @since 3.0.0 -
integrator3/trunk/integrator/api.php
r835472 r853248 4 4 * 5 5 * @package Integrator 3.0 - Wordpress Package 6 * @copyright 2009 - 201 2Go Higher Information Services. All rights reserved.6 * @copyright 2009 - 2014 Go Higher Information Services. All rights reserved. 7 7 * @license ${p.PROJECT_LICENSE} 8 * @version 3.0. 19( $Id: api.php 142 2012-11-28 02:28:39Z steven_gohigher $ )8 * @version 3.0.20 ( $Id: api.php 142 2012-11-28 02:28:39Z steven_gohigher $ ) 9 9 * @author Go Higher Information Services 10 10 * @since 3.0.0 … … 25 25 /** 26 26 * IntApi class object 27 * @version 3.0. 1927 * @version 3.0.20 28 28 * 29 29 * @since 3.0.0 … … 99 99 * Constructor method 100 100 * @access public 101 * @version 3.0. 19101 * @version 3.0.20 102 102 * 103 103 * @since 3.0.0 … … 143 143 * Getter method 144 144 * @access public 145 * @version 3.0. 19145 * @version 3.0.20 146 146 * @param string - $name: the name of the property trying to be gotten 147 147 * … … 158 158 * Setter method 159 159 * @access public 160 * @version 3.0. 19160 * @version 3.0.20 161 161 * @param string - $name: the name of the property to set 162 162 * @param mixed - $value: the value to set the property to … … 173 173 * Retrieves all the pages for all the connections 174 174 * @access public 175 * @version 3.0. 19175 * @version 3.0.20 176 176 * 177 177 * @return result of api call … … 192 192 * Retrieves the correct route for a selected connection / page combination 193 193 * @access public 194 * @version 3.0. 19194 * @version 3.0.20 195 195 * @param array - $post: contains the cnxn_id and page being requested 196 196 * … … 216 216 * Retrieves connections requiring wrapping 217 217 * @access public 218 * @version 3.0. 19218 * @version 3.0.20 219 219 * 220 220 * @return result of api call … … 235 235 * Pings the Integrator to ensure connection 236 236 * @access public 237 * @version 3.0. 19237 * @version 3.0.20 238 238 * @param boolean - $updated: if true we should pull values from $_POST 239 239 * … … 274 274 * Updates the settings in the Integrator with the settings established in the component 275 275 * @access public 276 * @version 3.0. 19276 * @version 3.0.20 277 277 * @param boolean - $updated: if true we should pull values from $_POST 278 278 * … … 316 316 * Create a new user throughout the Integrator 317 317 * @access public 318 * @version 3.0. 19318 * @version 3.0.20 319 319 * @param array - $post: the user array to send 320 320 * … … 339 339 * Calls the Integrator to remove a user 340 340 * @access public 341 * @version 3.0. 19341 * @version 3.0.20 342 342 * @param string - $email: the email address of the user being deleted 343 343 * … … 363 363 * Updates user information across the various Integrator connections 364 364 * @access public 365 * @version 3.0. 19365 * @version 3.0.20 366 366 * @param array - $post: the user array to send 367 367 * … … 386 386 * Validate user information prior to creation 387 387 * @access public 388 * @version 3.0. 19388 * @version 3.0.20 389 389 * @param array - $post: the user array to send 390 390 * … … 412 412 * Validates user information across the various Integrator connections 413 413 * @access public 414 * @version 3.0. 19414 * @version 3.0.20 415 415 * @param array - $post: the user array to send 416 416 * … … 438 438 * Wrapper for calling up the API interface 439 439 * @access private 440 * @version 3.0. 19440 * @version 3.0.20 441 441 * @param string - $url: the url to connect to 442 442 * @param array - $post: any additional post variables to send … … 482 482 * Uniform method to set the api url 483 483 * @access private 484 * @version 3.0. 19484 * @version 3.0.20 485 485 * @param string - $url: the setting for the api url to use 486 486 * -
integrator3/trunk/integrator/curl.php
r835472 r853248 5 5 * 6 6 * @package Integrator 3.0 - Wordpress Package 7 * @copyright 2009 - 201 2Go Higher Information Services. All rights reserved.7 * @copyright 2009 - 2014 Go Higher Information Services. All rights reserved. 8 8 * @license ${p.PROJECT_LICENSE} 9 * @version 3.0. 19( $Id: curl.php 144 2012-11-29 17:19:42Z steven_gohigher $ )9 * @version 3.0.20 ( $Id: curl.php 144 2012-11-29 17:19:42Z steven_gohigher $ ) 10 10 * @author Go Higher Information Services 11 11 * @since 3.0.0 … … 21 21 /** 22 22 * IntCurl class object 23 * @version 3.0. 1923 * @version 3.0.20 24 24 * 25 25 * @since 3.0.0 … … 120 120 * Constructor 121 121 * @access public 122 * @version 3.0. 19122 * @version 3.0.20 123 123 * @param string - $url: if set contains a URL to create the CURL instance with 124 124 * … … 138 138 * Call constructor - when a method is called 139 139 * @access public 140 * @version 3.0. 19140 * @version 3.0.20 141 141 * @param string - $method: the name of the method being called 142 142 * @param array - $arguments: the arguments passed to the method … … 168 168 * Simple call method 169 169 * @access public 170 * @version 3.0. 19170 * @version 3.0.20 171 171 * @param string - $method: the call method to perform 172 172 * @param string - $url: the url to call with curl … … 197 197 * Simple FTP get 198 198 * @access public 199 * @version 3.0. 19199 * @version 3.0.20 200 200 * @param string - $url: the url to call for 201 201 * @param string - $file_path: the remote file path to get … … 246 246 * Sets the required items for a post using curl 247 247 * @access public 248 * @version 3.0. 19248 * @version 3.0.20 249 249 * @param varies - $params: the parameters to post 250 250 * @param array - $options: the options to use for curl handler … … 273 273 * Sets the required items for a put using curl 274 274 * @access public 275 * @version 3.0. 19275 * @version 3.0.20 276 276 * @param varies - $params: the parameters to put 277 277 * @param array - $options: the options to use for curl handler … … 299 299 * Performs a delete through the curl handler 300 300 * @access public 301 * @version 3.0. 19301 * @version 3.0.20 302 302 * @param varies - $params: the parameters to use for execution 303 303 * @param array - $options: the options for the curl handler … … 322 322 * Sets the cookeis for the curl handler 323 323 * @access public 324 * @version 3.0. 19324 * @version 3.0.20 325 325 * @param varies - $params: the cookie parameters to use 326 326 * … … 342 342 * Tests to see if there are errors 343 343 * @access public 344 * @version 3.0. 19344 * @version 3.0.20 345 345 * 346 346 * @return string of error message or false on no error … … 356 356 * Sets an http header 357 357 * @access public 358 * @version 3.0. 19358 * @version 3.0.20 359 359 * @param string - $header: the header type to use 360 360 * @param string - $content: the content to set the header to … … 371 371 * Sets the http method 372 372 * @access public 373 * @version 3.0. 19373 * @version 3.0.20 374 374 * @param string - $method: the setting to use 375 375 * … … 387 387 * Create http login option fields 388 388 * @access public 389 * @version 3.0. 19389 * @version 3.0.20 390 390 * @param string - $username: the username to use 391 391 * @param string - $password: the password to use … … 406 406 * Sets proxy options for the curl handler 407 407 * @access public 408 * @version 3.0. 19408 * @version 3.0.20 409 409 * @param string - $url: the url to use as the proxy server 410 410 * @param integer - $port: the port on the proxy server to connect through … … 424 424 * Sets the login for a proxy server for the curl handler 425 425 * @access public 426 * @version 3.0. 19426 * @version 3.0.20 427 427 * @param string - $username: the username to use 428 428 * @param string - $password: the password to use … … 441 441 * Sets the required items for an ssl connection 442 442 * @access public 443 * @version 3.0. 19443 * @version 3.0.20 444 444 * @param boolean - $verify_peer: true to verify peer 445 445 * @param integer - $verify_host: the verify host integer setting for the curl handler … … 467 467 * Sets an array of options to the curl handler options 468 468 * @access public 469 * @version 3.0. 19469 * @version 3.0.20 470 470 * @param array - $options: array to set 471 471 * … … 493 493 * Sets an individual option code and value 494 494 * @access public 495 * @version 3.0. 19495 * @version 3.0.20 496 496 * @param string - $code: the curl option to set 497 497 * @param varies - $value: the value to set the code to … … 514 514 * Creates a new curl handler session and resets common items 515 515 * @access public 516 * @version 3.0. 19516 * @version 3.0.20 517 517 * @param string - $url: the url to use for the curl handler 518 518 * … … 547 547 * Executes the actual curl request 548 548 * @access public 549 * @version 3.0. 19549 * @version 3.0.20 550 550 * 551 551 * @return response or false on error … … 620 620 * Checks to see if curl is actually enabled 621 621 * @access public 622 * @version 3.0. 19622 * @version 3.0.20 623 623 * 624 624 * @return boolean true if curl is enabled … … 634 634 * Outputs the debugging screen 635 635 * @access public 636 * @version 3.0. 19636 * @version 3.0.20 637 637 * 638 638 * @return string containing debug information … … 675 675 * Assembles an array of request options for debugging 676 676 * @access public 677 * @version 3.0. 19677 * @version 3.0.20 678 678 * 679 679 * @return array … … 689 689 * Sets the default values when new sessions are created 690 690 * @access private 691 * @version 3.0. 19691 * @version 3.0.20 692 692 * 693 693 * @since 3.0.0 -
integrator3/trunk/integrator/helper.php
r835472 r853248 4 4 * 5 5 * @package Integrator 3.0 - Wordpress Package 6 * @copyright 2009 - 201 2Go Higher Information Services. All rights reserved.6 * @copyright 2009 - 2014 Go Higher Information Services. All rights reserved. 7 7 * @license ${p.PROJECT_LICENSE} 8 * @version 3.0. 19( $Id: helper.php 244 2013-04-24 13:31:54Z steven_gohigher $ )8 * @version 3.0.20 ( $Id: helper.php 244 2013-04-24 13:31:54Z steven_gohigher $ ) 9 9 * @author Go Higher Information Services 10 10 * @since 3.0.0 … … 25 25 /** 26 26 * IntHelper class object 27 * @version 3.0. 1927 * @version 3.0.20 28 28 * 29 29 * @since 3.0.0 … … 35 35 * Finds a user and returns a single array 36 36 * @access public 37 * @version 3.0. 1937 * @version 3.0.20 38 38 * @param string - $find: either an email or username 39 39 * … … 67 67 * Creates a quick form redirection to send back to the Integrator securely 68 68 * @access public 69 * @version 3.0. 1969 * @version 3.0.20 70 70 * @param string - $url: the form action to send to 71 71 * @param array - $fields: hidden fields to send … … 98 98 * Checks a username to see if it is actually an email address 99 99 * @access public 100 * @version 3.0. 19100 * @version 3.0.20 101 101 * @param string - $username: the suspect username 102 102 * … … 117 117 * @access public 118 118 * @static 119 * @version 3.0. 19( $id$ )119 * @version 3.0.20 ( $id$ ) 120 120 * @param string - $name: the cookie name 121 121 * @param string - $id: the value assigned … … 159 159 * Builds a recursive tree from an array of menu items 160 160 * @access public 161 * @version 3.0. 19161 * @version 3.0.20 162 162 * @param integer - $id: the parent to start from 163 163 * @param string - $indent: any indent value passed on … … 193 193 * Searches for a user and returns all matches 194 194 * @access public 195 * @version 3.0. 19195 * @version 3.0.20 196 196 * @param string - $search 197 197 * -
integrator3/trunk/integrator/uri.php
r835472 r853248 5 5 * 6 6 * @package Integrator 7 * @copyright 2009 - 201 2Go Higher Information Services. All rights reserved.7 * @copyright 2009 - 2014 Go Higher Information Services. All rights reserved. 8 8 * @license ${p.PROJECT_LICENSE} 9 * @version 3.0. 19( $Id: uri.php 3 2012-04-19 14:16:13Z steven_gohigher $ )9 * @version 3.0.20 ( $Id: uri.php 3 2012-04-19 14:16:13Z steven_gohigher $ ) 10 10 * @author Go Higher Information Services 11 11 * @since 3.0.0 … … 21 21 /** 22 22 * URI class for managing Uniform Resource Identifiers 23 * @version 3.0. 1923 * @version 3.0.20 24 24 * 25 25 * @since 3.0.0 … … 112 112 * Constructor method 113 113 * @access public 114 * @version 3.0. 19114 * @version 3.0.20 115 115 * @param string - $uri: contains the URI to generate object from 116 116 * … … 128 128 * Gets an object for the given URI, creating it if it doesn't exist 129 129 * @access public 130 * @version 3.0. 19130 * @version 3.0.20 131 131 * @param string - $uri: contains the URI to retrieve 132 132 * @param boolean - $force: if set will force a new object to be created … … 180 180 * Gets the base portion of the URI object 181 181 * @access public 182 * @version 3.0. 19182 * @version 3.0.20 183 183 * @param boolean - $pathonly: if set will only return the base of the URI 184 184 * … … 210 210 * Gets the root of the URI object only 211 211 * @access public 212 * @version 3.0. 19212 * @version 3.0.20 213 213 * @param boolean - $pathonly: if set will send back only the path 214 214 * @param string - $path: if set will return the root with the provided path instead … … 239 239 * Gets the current URI of the server regardless of the current object 240 240 * @access public 241 * @version 3.0. 19241 * @version 3.0.20 242 242 * 243 243 * @return string of the current URI … … 259 259 * Takes a URI string and assigns it to the various parts of the object 260 260 * @access public 261 * @version 3.0. 19261 * @version 3.0.20 262 262 * @param string - $uri: containing the URI to parse 263 263 * … … 295 295 * Converts the object to a string 296 296 * @access public 297 * @version 3.0. 19297 * @version 3.0.20 298 298 * @param array - $parts: if set contains an array of URI parts to assemble and return 299 299 * … … 323 323 * Sets a variable to the query array 324 324 * @access public 325 * @version 3.0. 19325 * @version 3.0.20 326 326 * @param string - $name: contains the name of the variable to set 327 327 * @param varies - $value: contains the value of the variable to set … … 342 342 * Gets a variable from the query array 343 343 * @access public 344 * @version 3.0. 19344 * @version 3.0.20 345 345 * @param string - $name: contains the variable to get the value of 346 346 * @param varies - $default: contains the default value to return if no variable found … … 361 361 * Deletes a variable from the query array 362 362 * @access public 363 * @version 3.0. 19363 * @version 3.0.20 364 364 * @param string - $name: contains the variable to delete 365 365 * … … 378 378 * Sets the query to the query array 379 379 * @access public 380 * @version 3.0. 19380 * @version 3.0.20 381 381 * @param string - $query: contains the query of the URI to parse into the variable array 382 382 * … … 404 404 * Gets the query from the query string 405 405 * @access public 406 * @version 3.0. 19406 * @version 3.0.20 407 407 * @param boolean - $toArray: if set will return an array rather than string 408 408 * … … 429 429 * Builds a query from an array 430 430 * @access public 431 * @version 3.0. 19431 * @version 3.0.20 432 432 * @param array - $params: array containing query variables 433 433 * @param string - $akey: If set sets an array string key[akey] … … 468 468 * Gets the scheme of the current URI 469 469 * @access public 470 * @version 3.0. 19470 * @version 3.0.20 471 471 * 472 472 * @return string containing scheme … … 482 482 * Sets the scheme of the current URI object 483 483 * @access public 484 * @version 3.0. 19484 * @version 3.0.20 485 485 * @param string - $scheme: contains the scheme to set 486 486 * … … 496 496 * Gets the username of the current URI object 497 497 * @access public 498 * @version 3.0. 19498 * @version 3.0.20 499 499 * 500 500 * @return string containing the username … … 510 510 * Sets the username of the current URI object 511 511 * @access public 512 * @version 3.0. 19512 * @version 3.0.20 513 513 * @param string - $user: containing the username to set 514 514 * … … 524 524 * Gets the password of the current URI object 525 525 * @access public 526 * @version 3.0. 19526 * @version 3.0.20 527 527 * 528 528 * @return string containing the password … … 538 538 * Sets the password of the current URI object 539 539 * @access public 540 * @version 3.0. 19540 * @version 3.0.20 541 541 * @param string - $pass: contains the password to set 542 542 * … … 552 552 * Gets the hostname of the current URI object 553 553 * @access public 554 * @version 3.0. 19554 * @version 3.0.20 555 555 * 556 556 * @return string containing the hostname … … 566 566 * Sets the hostname of the current URI object 567 567 * @access public 568 * @version 3.0. 19568 * @version 3.0.20 569 569 * @param string - $host: Containing the hostname to set 570 570 * … … 580 580 * Gets the port number of the current URI object 581 581 * @access public 582 * @version 3.0. 19582 * @version 3.0.20 583 583 * 584 584 * @return string containing the port number or null if not set … … 594 594 * Sets the port number of the current URI object 595 595 * @access public 596 * @version 3.0. 19596 * @version 3.0.20 597 597 * @param string - $port: Contains the port number to set 598 598 * … … 608 608 * Gets the path of the current URI object 609 609 * @access public 610 * @version 3.0. 19610 * @version 3.0.20 611 611 * 612 612 * @return string containing the path … … 622 622 * Sets the path of the current URI object 623 623 * @access public 624 * @version 3.0. 19624 * @version 3.0.20 625 625 * @param string - $path: contains the path to set 626 626 * … … 636 636 * Gets the fragment of the current URI object 637 637 * @access public 638 * @version 3.0. 19638 * @version 3.0.20 639 639 * 640 640 * @return string containing the fragment … … 650 650 * Sets the fragment of the current URI object 651 651 * @access public 652 * @version 3.0. 19652 * @version 3.0.20 653 653 * @param string - $anchor: Containing the fragment value to set 654 654 * … … 664 664 * Checks to see if the URI object is a fragment 665 665 * @access public 666 * @version 3.0. 19666 * @version 3.0.20 667 667 * 668 668 * @return boolean … … 685 685 * Checks to see if the URI object is set to SSL 686 686 * @access public 687 * @version 3.0. 19687 * @version 3.0.20 688 688 * 689 689 * @return boolean … … 699 699 * Checks to see if the URI is actually an internal url 700 700 * @access public 701 * @version 3.0. 19701 * @version 3.0.20 702 702 * @param string - $url: contains the URL to check 703 703 * … … 720 720 * Cleans the path of any undesirable values 721 721 * @access private 722 * @version 3.0. 19722 * @version 3.0.20 723 723 * @param string - $path: contains the path to clean 724 724 * … … 757 757 * Parses the uri provided 758 758 * @access private 759 * @version 3.0. 19759 * @version 3.0.20 760 760 * @param string $uri: Contains the URI to parse 761 761 * -
integrator3/trunk/readme.txt
r835472 r853248 5 5 Requires at least: 3.2 6 6 Tested up to: 3.4 7 Stable tag: 3.0. 197 Stable tag: 3.0.20 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.