Showing preview only (1,581K chars total). Download the full file or copy to clipboard to get everything.
Repository: evernote/evernote-cloud-sdk-php
Branch: master
Commit: b9e83d40cfd0
Files: 161
Total size: 1.5 MB
Directory structure:
gitextract_y1n92rby/
├── .gitignore
├── .travis.yml
├── APACHE-LICENSE-2.0.txt
├── LICENSE
├── NOTICE
├── README.md
├── composer.json
├── documentation/
│ ├── ApiIndex.md
│ ├── Evernote-Client.md
│ ├── Getting_Started.md
│ └── Migration.md
├── phpunit.xml.dist
├── sample/
│ ├── client/
│ │ ├── add_resource.php
│ │ ├── create_note.php
│ │ ├── delete_note.php
│ │ ├── find_notes.php
│ │ ├── list_notebooks.php
│ │ ├── move_note.php
│ │ ├── reminders.php
│ │ ├── replace_note.php
│ │ └── share_note.php
│ └── oauth/
│ └── index.php
├── src/
│ ├── EDAM/
│ │ ├── Error/
│ │ │ └── Types.php
│ │ ├── Limits/
│ │ │ └── Types.php
│ │ ├── NoteStore/
│ │ │ ├── NoteStore.php
│ │ │ └── Types.php
│ │ ├── Types/
│ │ │ └── Types.php
│ │ └── UserStore/
│ │ ├── Types.php
│ │ └── UserStore.php
│ ├── Evernote/
│ │ ├── AdvancedClient.php
│ │ ├── Auth/
│ │ │ └── OauthHandler.php
│ │ ├── Client.php
│ │ ├── Enml/
│ │ │ ├── CSSInliner/
│ │ │ │ ├── CssInlinerInterface.php
│ │ │ │ └── CssToInlineStyles.php
│ │ │ ├── Converter/
│ │ │ │ ├── EnmlConverterInterface.php
│ │ │ │ ├── EnmlToHtmlConverter.php
│ │ │ │ ├── HtmlConverterInterface.php
│ │ │ │ ├── HtmlToEnmlConverter.php
│ │ │ │ ├── PlainTextToEnmlConverter.php
│ │ │ │ ├── enml2html.xslt
│ │ │ │ └── html2enml.xslt
│ │ │ └── HtmlCleaner/
│ │ │ ├── HtmlCleanerInterface.php
│ │ │ └── HtmlPurifier.php
│ │ ├── Exception/
│ │ │ ├── AuthExpiredException.php
│ │ │ ├── AuthorizationDeniedException.php
│ │ │ ├── BadDataFormatException.php
│ │ │ ├── DataConflictException.php
│ │ │ ├── DataRequiredException.php
│ │ │ ├── EnmlValidationException.php
│ │ │ ├── ExceptionFactory.php
│ │ │ ├── InternalErrorException.php
│ │ │ ├── InvalidAuthException.php
│ │ │ ├── LengthTooLongException.php
│ │ │ ├── LengthTooShortException.php
│ │ │ ├── LimitReachedException.php
│ │ │ ├── NotFoundNoteException.php
│ │ │ ├── NotFoundNotebookException.php
│ │ │ ├── NotFoundSharedNotebookException.php
│ │ │ ├── PermissionDeniedException.php
│ │ │ ├── QuotaReachedException.php
│ │ │ ├── RateLimitReachedException.php
│ │ │ ├── ShardUnavailableException.php
│ │ │ ├── TakenDownException.php
│ │ │ ├── TooFewException.php
│ │ │ ├── TooManyException.php
│ │ │ ├── UnknownException.php
│ │ │ └── UnsupportedOperationException.php
│ │ ├── Factory/
│ │ │ └── ThriftClientFactory.php
│ │ ├── File/
│ │ │ ├── File.php
│ │ │ └── FileInterface.php
│ │ ├── Model/
│ │ │ ├── EnmlNoteContent.php
│ │ │ ├── HtmlNoteContent.php
│ │ │ ├── Note.php
│ │ │ ├── NoteContent.php
│ │ │ ├── NoteContentInterface.php
│ │ │ ├── Notebook.php
│ │ │ ├── PlainTextNoteContent.php
│ │ │ ├── Resource.php
│ │ │ ├── Search.php
│ │ │ └── SearchResult.php
│ │ └── Store/
│ │ └── Store.php
│ ├── Thrift/
│ │ ├── Base/
│ │ │ └── TBase.php
│ │ ├── ClassLoader/
│ │ │ └── ThriftClassLoader.php
│ │ ├── Exception/
│ │ │ ├── TApplicationException.php
│ │ │ ├── TException.php
│ │ │ ├── TProtocolException.php
│ │ │ └── TTransportException.php
│ │ ├── Factory/
│ │ │ ├── TBinaryProtocolFactory.php
│ │ │ ├── TCompactProtocolFactory.php
│ │ │ ├── TJSONProtocolFactory.php
│ │ │ ├── TProtocolFactory.php
│ │ │ ├── TStringFuncFactory.php
│ │ │ └── TTransportFactory.php
│ │ ├── Protocol/
│ │ │ ├── JSON/
│ │ │ │ ├── BaseContext.php
│ │ │ │ ├── ListContext.php
│ │ │ │ ├── LookaheadReader.php
│ │ │ │ └── PairContext.php
│ │ │ ├── TBinaryProtocol.php
│ │ │ ├── TBinaryProtocolAccelerated.php
│ │ │ ├── TCompactProtocol.php
│ │ │ ├── TJSONProtocol.php
│ │ │ └── TProtocol.php
│ │ ├── Serializer/
│ │ │ └── TBinarySerializer.php
│ │ ├── Server/
│ │ │ ├── TForkingServer.php
│ │ │ ├── TServer.php
│ │ │ ├── TServerSocket.php
│ │ │ ├── TServerTransport.php
│ │ │ └── TSimpleServer.php
│ │ ├── StringFunc/
│ │ │ ├── Core.php
│ │ │ ├── Mbstring.php
│ │ │ └── TStringFunc.php
│ │ ├── Transport/
│ │ │ ├── TBufferedTransport.php
│ │ │ ├── TFramedTransport.php
│ │ │ ├── THttpClient.php
│ │ │ ├── TMemoryBuffer.php
│ │ │ ├── TNullTransport.php
│ │ │ ├── TPhpStream.php
│ │ │ ├── TSocket.php
│ │ │ ├── TSocketPool.php
│ │ │ └── TTransport.php
│ │ └── Type/
│ │ ├── TConstant.php
│ │ ├── TMessageType.php
│ │ └── TType.php
│ └── autoload.php
└── tests/
├── Evernote/
│ └── Tests/
│ ├── ClientTest.php
│ └── Factory/
│ └── ThriftClientFactoryMock.php
├── bootstrap.php
└── fixtures/
├── note/
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_1d9fc47121ec77f859917916d8d773c44190b332
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_4308453c30010f6fddcfcbf282b8cd29e44af0a1
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_73b11960aeaa2ba866b406c2a93ed03f16db36d9
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_8d241b577460159e730d3b82088ce127583e2bec
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_9577897cad7bf1e37f2606087f3f693f47506bd3
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_a99bcc7351d22c34ea3a721ee456bd94de037d8c
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_c20b1b0b4a29805231df016645ecd8d10df5f482
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_3e6b2af694337e2953fccfd591ac7a23ac9cc541
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_530966c9d987f0a33eb4aae4795088981d09de2d
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_98109d118517ebeb7ada77c9db5ab71341f7590f
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_9cf7cf916a80d10d4e4eeb62398dd60ce497d607
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_d1901257919570d4c4cc1f2fc47fc1a97327fd92
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_dda1101e9822fbd8d1a1dbeb09df9045e2cd7a6a
│ ├── authenticateToSharedNotebook_REGULAR_USER_TOKEN_ab05ad6f7147221284dae09f8170c8e57ec73287
│ ├── getSharedNotebookByAuth_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── getSharedNotebookByAuth_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── getSharedNotebookByAuth_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listLinkedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listLinkedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── listLinkedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── listNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listSharedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listSharedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ └── listSharedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
└── user/
├── authenticateToBusiness_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── authenticateToBusiness_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
├── getNoteStoreUrl_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── getNoteStoreUrl_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
├── getNoteStoreUrl_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
├── getUser_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── getUser_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
└── getUser_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
.idea
.swp
/vendor/
/composer.phar
/composer.lock
.DS_Store
phpunit.xml
================================================
FILE: .travis.yml
================================================
language: php
php:
- 5.3
before_script:
- composer self-update
- composer install --dev --prefer-dist --no-interaction
script: phpunit --coverage-text -c phpunit.xml.dist
================================================
FILE: APACHE-LICENSE-2.0.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: LICENSE
================================================
/*
* Copyright (c) 2007-2015 by Evernote Corporation, All rights reserved.
*
* Use of the source code and binary libraries included in this package
* is permitted under the following terms:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
================================================
FILE: NOTICE
================================================
Apache Thrift
Copyright 2006-2015 The Apache Software Foundation.
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
================================================
FILE: README.md
================================================
Evernote Cloud SDK PHP v2.0.2
=====================================
A newly-redesigned, simple, workflow-oriented library built on the Evernote Cloud API. It's designed to drop into your web app easily and make most common Evernote integrations very simple to accomplish. (And even the more complex integrations easier than they used to be.)
Installation
------------
The recommended way to install the SDK is through composer.
Just run these two commands to install it:
``` bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar require evernote/evernote-cloud-sdk-php
```
Now you can add the autoloader, and you will have access to the library:
``` php
<?php
require 'vendor/autoload.php';
```
If you don't use **Composer** , just require the provided autoloader:
``` php
<?php
require_once 'src/autoload.php';
```
Getting started with the SDK
-------------------------------------
[Getting started guide](documentation/Getting_Started.md)
Note for users of the 1.x SDK for PHP
-------------------------------------
This SDK is a complete revision of the previous Evernote SDK for PHP.
See the [Migration guide](documentation/Migration.md) for more information.
FAQ
---
#### Where can I find out more about the Evernote API?
Please check out the [Evernote Developers Portal](https://dev.evernote.com).
================================================
FILE: composer.json
================================================
{
"name": "evernote/evernote-cloud-sdk-php",
"description": "Evernote Cloud SDK for PHP",
"keywords": [
"evernote",
"api",
"sdk"
],
"homepage": "https://github.com/evernote/evernote-cloud-sdk-php",
"version": "2.0.2",
"license": "Apache",
"authors": [
{
"name": "Laurent Sarrazin for Evernote",
"email": "laurent@sarrazin.io",
"homepage": "http://laurent.sarrazin.io",
"role": "Lead developer"
}
],
"support": {
"issues": "https://github.com/evernote/evernote-cloud-sdk-php/issues",
"forum": "https://discussion.evernote.com/forum/61-evernote-for-developers/"
},
"require": {
"php": ">=5.3",
"ezyang/htmlpurifier": "^4.6.0",
"tijsverkoyen/css-to-inline-styles": "~2.2",
"psr/log": "~1.0"
},
"autoload": {
"psr-0": { "Evernote": "src/", "Thrift": "src/"},
"classmap": ["src/EDAM"]
}
}
================================================
FILE: documentation/ApiIndex.md
================================================
API Index
=========
* Evernote
* [Client](Evernote-Client.md)
================================================
FILE: documentation/Evernote-Client.md
================================================
Evernote\Client
===============
* Class name: Client
* Namespace: Evernote
Constants
----------
### PERSONAL_SCOPE
const PERSONAL_SCOPE = 1
### LINKED_SCOPE
const LINKED_SCOPE = 2
### SEARCH_SCOPE_NONE
const SEARCH_SCOPE_NONE = 0
### SEARCH_SCOPE_PERSONAL
const SEARCH_SCOPE_PERSONAL = 1
### SEARCH_SCOPE_PERSONAL_LINKED
const SEARCH_SCOPE_PERSONAL_LINKED = 2
### SEARCH_SCOPE_BUSINESS
const SEARCH_SCOPE_BUSINESS = 4
### SEARCH_SCOPE_APP_NOTEBOOK
const SEARCH_SCOPE_APP_NOTEBOOK = 8
### SEARCH_SCOPE_DEFAULT
const SEARCH_SCOPE_DEFAULT = 1
### SEARCH_SCOPE_ALL
const SEARCH_SCOPE_ALL = 7
### SORT_ORDER_TITLE
const SORT_ORDER_TITLE = 1
### SORT_ORDER_RECENTLY_CREATED
const SORT_ORDER_RECENTLY_CREATED = 2
### SORT_ORDER_RECENTLY_UPDATED
const SORT_ORDER_RECENTLY_UPDATED = 4
### SORT_ORDER_RELEVANCE
const SORT_ORDER_RELEVANCE = 8
### SORT_ORDER_NORMAL
const SORT_ORDER_NORMAL = 0
### SORT_ORDER_REVERSE
const SORT_ORDER_REVERSE = 65536
### BUSINESS_NOTE
const BUSINESS_NOTE = 0
### PERSONAL_NOTE
const PERSONAL_NOTE = 1
### SHARED_NOTE
const SHARED_NOTE = 2
Properties
----------
### $advancedClient
protected \Evernote\AdvancedClient $advancedClient
* Visibility: **protected**
### $token
protected string $token
* Visibility: **protected**
### $sandbox
protected boolean $sandbox
* Visibility: **protected**
### $china
protected boolean $china
* Visibility: **protected**
### $userNoteStore
protected \EDAM\NoteStore\NoteStoreClient $userNoteStore
* Visibility: **protected**
### $businessNoteStore
protected \EDAM\NoteStore\NoteStoreClient $businessNoteStore
* Visibility: **protected**
### $businessToken
protected string $businessToken
* Visibility: **protected**
### $user
protected \EDAM\Types\User $user
* Visibility: **protected**
### $businessAuth
protected \EDAM\UserStore\AuthenticationResult $businessAuth
* Visibility: **protected**
Methods
-------
### __construct
mixed Evernote\Client::__construct(string|null $token, boolean $sandbox, \Evernote\AdvancedClient|null $advancedClient, \Psr\Log\LoggerInterface|null $logger, boolean $china)
* Visibility: **public**
#### Arguments
* $token **string|null**
* $sandbox **boolean**
* $advancedClient **Evernote\AdvancedClient|null**
* $logger **Psr\Log\LoggerInterface|null**
* $china **boolean**
### getUser
\EDAM\Types\User Evernote\Client::getUser()
Returns the User corresponding to the provided authentication token
* Visibility: **public**
### isBusinessUser
boolean Evernote\Client::isBusinessUser()
Returns a boolean indicating if the user has a business account
* Visibility: **public**
### getBusinessToken
string Evernote\Client::getBusinessToken()
Returns the token used to access the business notestore
* Visibility: **public**
### getBusinessNoteStore
\EDAM\NoteStore\NoteStoreClient|mixed Evernote\Client::getBusinessNoteStore()
Returns the business notestore
* Visibility: **public**
### getBusinessSharedNotebooks
null Evernote\Client::getBusinessSharedNotebooks()
Returns the list of notebooks shared by the user with her business account
* Visibility: **public**
### getBusinessLinkedNotebooks
array Evernote\Client::getBusinessLinkedNotebooks()
Returns the list of notebooks shared to the user through the business account
* Visibility: **public**
### listNotebooks
array Evernote\Client::listNotebooks()
Returns the list of notebooks
* Visibility: **public**
### listPersonalNotebooks
array Evernote\Client::listPersonalNotebooks()
Returns the list of personal notebooks
* Visibility: **public**
### listSharedNotebooks
array Evernote\Client::listSharedNotebooks()
Returns the list of notebooks shared by the user
* Visibility: **public**
### listLinkedNotebooks
array Evernote\Client::listLinkedNotebooks()
Returns the list of notebooks shared to the user
* Visibility: **public**
### getUserNotestore
\EDAM\NoteStore\NoteStoreClient|mixed Evernote\Client::getUserNotestore()
Returns the personal notestore of the user
* Visibility: **public**
### replaceNote
\Evernote\Model\Note Evernote\Client::replaceNote(\Evernote\Model\Note $noteToReplace, \Evernote\Model\Note $note)
Replaces an existing note by another one (new or existing)
* Visibility: **public**
#### Arguments
* $noteToReplace **Evernote\Model\Note**
* $note **Evernote\Model\Note**
### uploadNote
\Evernote\Model\Note Evernote\Client::uploadNote(\Evernote\Model\Note $note, \Evernote\Model\Notebook $notebook)
Sends a new Note to the API
* Visibility: **public**
#### Arguments
* $note **Evernote\Model\Note**
* $notebook **Evernote\Model\Notebook**
### deleteNote
boolean Evernote\Client::deleteNote(\Evernote\Model\Note $note)
Deletes a note
* Visibility: **public**
#### Arguments
* $note **Evernote\Model\Note**
### shareNote
null|string Evernote\Client::shareNote(\Evernote\Model\Note $note)
Shares a note and returns the share url
* Visibility: **public**
#### Arguments
* $note **Evernote\Model\Note**
### moveNote
\Evernote\Model\Note Evernote\Client::moveNote(\Evernote\Model\Note $note, \Evernote\Model\Notebook $notebook)
Moves a note to another notebook
* Visibility: **public**
#### Arguments
* $note **Evernote\Model\Note**
* $notebook **Evernote\Model\Notebook**
### getNote
\Evernote\Model\Note|null Evernote\Client::getNote($guid, null $scope)
Retrieves an existing note
* Visibility: **public**
#### Arguments
* $guid **mixed**
* $scope **null**
### isAppNotebookToken
boolean Evernote\Client::isAppNotebookToken($token)
Checks if the token is an "app notebook" one
* Visibility: **public**
#### Arguments
* $token **mixed**
### getNotebook
\Evernote\Model\Notebook|null Evernote\Client::getNotebook($notebook_guid, null $scope)
Retrieves a notebook
* Visibility: **public**
#### Arguments
* $notebook_guid **mixed**
* $scope **null**
### findNotesWithSearch
array|boolean Evernote\Client::findNotesWithSearch($noteSearch, \Evernote\Model\Notebook $notebook, integer $scope, integer $sortOrder, integer $maxResults)
Searches for notes
* Visibility: **public**
#### Arguments
* $noteSearch **mixed**
* $notebook **Evernote\Model\Notebook**
* $scope **integer**
* $sortOrder **integer**
* $maxResults **integer**
### setAdvancedClient
mixed Evernote\Client::setAdvancedClient(\Evernote\AdvancedClient $advancedClient)
Sets the advancedClient
* Visibility: **public**
#### Arguments
* $advancedClient **Evernote\AdvancedClient**
### getAdvancedClient
\Evernote\AdvancedClient Evernote\Client::getAdvancedClient()
Returns the advancedClient
* Visibility: **public**
### setSandbox
mixed Evernote\Client::setSandbox(boolean $sandbox)
Sets the sandbox flag to true or false
* Visibility: **public**
#### Arguments
* $sandbox **boolean**
### getSandbox
boolean Evernote\Client::getSandbox()
Gets the current sandbox flag
* Visibility: **public**
### setChina
mixed Evernote\Client::setChina(boolean $china)
Sets the china flag to true or false
* Visibility: **public**
#### Arguments
* $china **boolean**
### getChina
boolean Evernote\Client::getChina()
Gets the current china flag
* Visibility: **public**
### setToken
mixed Evernote\Client::setToken(string $token)
Sets the authentication token
* Visibility: **public**
#### Arguments
* $token **string**
### getToken
string Evernote\Client::getToken()
Returns the current authentication token
* Visibility: **public**
### getNoteStore
mixed Evernote\Client::getNoteStore($noteStoreUrl)
* Visibility: **protected**
#### Arguments
* $noteStoreUrl **mixed**
### getShareUrl
mixed Evernote\Client::getShareUrl($guid, $shardId, $shareKey, $serviceHost)
* Visibility: **protected**
#### Arguments
* $guid **mixed**
* $shardId **mixed**
* $shareKey **mixed**
* $serviceHost **mixed**
### getSharedNotebookAuthResult
mixed Evernote\Client::getSharedNotebookAuthResult(\EDAM\Types\LinkedNotebook $linkedNotebook)
* Visibility: **protected**
#### Arguments
* $linkedNotebook **EDAM\Types\LinkedNotebook**
### getNoteBookByLinkedNotebook
mixed Evernote\Client::getNoteBookByLinkedNotebook(\EDAM\Types\LinkedNotebook $linkedNotebook)
* Visibility: **protected**
#### Arguments
* $linkedNotebook **EDAM\Types\LinkedNotebook**
### getBusinessAuth
\EDAM\UserStore\AuthenticationResult Evernote\Client::getBusinessAuth()
* Visibility: **protected**
### getNoteInstance
mixed Evernote\Client::getNoteInstance(\EDAM\Types\Note $edamNote, $noteStore, $token)
* Visibility: **protected**
#### Arguments
* $edamNote **EDAM\Types\Note**
* $noteStore **mixed**
* $token **mixed**
### getShardIdFromToken
mixed Evernote\Client::getShardIdFromToken($token)
* Visibility: **protected**
#### Arguments
* $token **mixed**
### isFlagSet
mixed Evernote\Client::isFlagSet($flags, $flag)
* Visibility: **protected**
#### Arguments
* $flags **mixed**
* $flag **mixed**
### findNotes_listNotebooksWithContext
mixed Evernote\Client::findNotes_listNotebooksWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
### findNotes_findInPersonalScopeWithContext
mixed Evernote\Client::findNotes_findInPersonalScopeWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
### findNotes_findInBusinessScopeWithContext
mixed Evernote\Client::findNotes_findInBusinessScopeWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
### findNotes_findInLinkedScopeWithContext
mixed Evernote\Client::findNotes_findInLinkedScopeWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
### findNotes_nextFindInLinkedScopeWithContext
mixed Evernote\Client::findNotes_nextFindInLinkedScopeWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
### compareByTitle
mixed Evernote\Client::compareByTitle($obj1, $obj2)
* Visibility: **protected**
#### Arguments
* $obj1 **mixed**
* $obj2 **mixed**
### compareByCreated
mixed Evernote\Client::compareByCreated($obj1, $obj2)
* Visibility: **protected**
#### Arguments
* $obj1 **mixed**
* $obj2 **mixed**
### compareByUpdated
mixed Evernote\Client::compareByUpdated($obj1, $obj2)
* Visibility: **protected**
#### Arguments
* $obj1 **mixed**
* $obj2 **mixed**
### findNotes_processResultsWithContext
mixed Evernote\Client::findNotes_processResultsWithContext($context)
* Visibility: **protected**
#### Arguments
* $context **mixed**
================================================
FILE: documentation/Getting_Started.md
================================================
Installation
------------
The recommended way to install the SDK is through composer.
Just run these two commands to install it:
``` bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar require evernote/evernote-cloud-sdk-php dev-master
```
Now you can add the autoloader, and you will have access to the library:
``` php
<?php
require 'vendor/autoload.php';
```
If you don't use **Composer** , just require the provided autoloader:
``` php
<?php
require 'src/autoload.php';
```
Getting an OAuth token
----------------------
The OAuth process does not require the php-oauth extension.
The only requirement is to have sessions enabled to keep data during the oauth process.
``` php
<?php
require 'vendor/autoload.php';
//set this to false to use in production
$sandbox = true;
$oauth_handler = new \Evernote\Auth\OauthHandler($sandbox);
$key = '%key%';
$secret = '%secret%';
$callback = 'http://host/pathto/evernote-cloud-sdk-php/sample/oauth/index.php';
$oauth_data = $oauth_handler->authorize($key, $secret, $callback);
echo "\nOauth Token : " . $oauth_data['oauth_token'];
```
You can then instantiate the client and call the api with this token.
Getting the "simple" client
---------------------------
The "simple" client is a high-level wrapper on top of the "advanced" client (see below).
It provides helper methods that hide complex stuff such as dealing with business accounts, app notebooks, etc.
All API calls are made with the \Evernote\Client.
Instantiate a new client object with a token and you're done.
The token can be an oauth token or a dev token.
``` php
<?php
require_once 'vendor/autoload.php';
$token = '%oauth_token%';
$sandbox = true;
$client = new \Evernote\Client($token, $sandbox);
```
Getting the "advanced" client
-----------------------------
The advanced client gives you a low level access to the API. That means you can call the thrift methods directly. See the [API Reference](https://dev.evernote.com/doc/reference/) for the list of methods available.
You can use this client for optimization reasons or to achieve more complex tasks than the ones handled by the simple client.
There are two ways to get the advanced client.
From scratch :
```php
<?php
require_once 'vendor/autoload.php';
$token = '%oauth_token%';
$sandbox = true;
$advancedClient = new \Evernote\AdvancedClient($token, $sandbox);
```
or, if you already have an instance of the simple client :
```php
<?php
require_once 'vendor/autoload.php';
$token = '%oauth_token%';
$sandbox = true;
$client = new \Evernote\Client($token, $sandbox);
$client->getNote('the-note-guid');
$advancedClient = $client->getAdvancedClient();
```
Once you have a instance of the advanced client you can, for example, call the getUser() method:
``` php
// First, get the right Store
$userStore = $advancedClient->getUserStore();
// Then do the call
$user = $userStore->getUser();
```
You may notice that we don't pass the token to the getUser() method. It's the same with all the methods that require a token. Just omit it as it is already set on the client object.
Using the "simple" client
-------------
[Create a note](../sample/client/create_note.php)
[Delete a note](../sample/client/delete_note.php)
[Move a note](../sample/client/move_note.php)
[Share a note](../sample/client/share_note.php)
[Replace a note](../sample/client/replace_note.php)
[Add resources to a note](../sample/client/add_resource.php)
[Find notes](../sample/client/find_notes.php)
[Manage reminders](../sample/client/reminders.php)
Going further
-------------
The 'sample' folder contains a few code samples to help you get started with basic features.
================================================
FILE: documentation/Migration.md
================================================
Migrating from Evernote SDK for PHP 1.x
=======================================
Oauth
-----
The OAuth process has been entirely rewritten in order to remove the dependency on the php-oauth extension.
However you'll still need the curl extension and sessions enabled in order to make it work.
Both are installed and configured by default on most server hosts.
The code to get an oauth token is pretty straightforward :
```php
<?php
require 'vendor/autoload.php';
//set this to false to use in production
$sandbox = true;
$oauth_handler = new \Evernote\Auth\OauthHandler($sandbox);
$key = '%key%';
$secret = '%secret%';
$callback = 'http://host/pathto/evernote-cloud-sdk-php/sample/oauth/index.php';
$oauth_data = $oauth_handler->authorize($key, $secret, $callback);
$oauth_token = $oauth_data['oauth_token'];
```
Client
------
The "advanced" client is mostly the same as the client of the old SDK.
The only difference is the constructor which now takes 2 params : the token and a boolean that indicates the environment you want to work on.
``` php
<?php
require_once 'vendor/autoload.php';
$token = '%oauth_token%';
$sandbox = true;
$advancedClient = new \Evernote\AdvancedClient($token, $sandbox);
```
You can now use the "advanced" client as the old client :
``` php
<?php
require_once 'vendor/autoload.php';
$token = '%oauth_token%';
$sandbox = true;
$advancedClient = new \Evernote\AdvancedClient($token, $sandbox);
```
================================================
FILE: phpunit.xml.dist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<php>
<!-- TOKENS -->
<server name="BUSINESS_USER_TOKEN" value="" />
<server name="BUSINESS_ADMIN_TOKEN" value="" />
<server name="REGULAR_USER_TOKEN" value="" />
</php>
<testsuites>
<testsuite name="Evernote Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/Evernote/</directory>
</whitelist>
</filter>
</phpunit>
================================================
FILE: sample/client/add_resource.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
// Create the resource
$resource = new \Evernote\Model\Resource('enlogo.png', 'image/png', 100, 100);
// Get a preformatted enml media tag (something like '<en-media type="%mime%" hash="%hash%" />')
$enml_media_tag = $resource->getEnmlMediaTag();
// Create the note
$note = new \Evernote\Model\Note();
$note->addResource($resource);
$note->title = 'Test note';
$note->content = new \Evernote\Model\EnmlNoteContent(
<<<ENML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd">
<en-note>$enml_media_tag</en-note>
ENML
);
// Upload the note
$client->uploadNote($note);
================================================
FILE: sample/client/create_note.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$note = new \Evernote\Model\Note();
$note->title = 'Test note';
$note->content = new \Evernote\Model\PlainTextNoteContent('Some plain text content.');
$note->tagNames = array('tag1', 'tag2');
/**
* The second parameter $notebook is optionnal.
* If left blank or set as null, the note will be created in the default notebook
* Or in the App Notebook if applicable.
*
* Otherwise, you need to pass a \Evernote\Model\Notebook object
* There are 2 options :
*
* If you already have a Notebook object (from the listNotebooks method for example)
* just pass it as is to the method.
*
* If you only have a notebookGuid, instantiate an empty notebook and set the guid :
*
* $notebook = new \Evernote\Model\Notebook();
* $notebook->guid = $notebook_guid;
*
* The notebook will be automatically retrieved if necessary
*/
$notebook = null;
$client->uploadNote($note, $notebook);
================================================
FILE: sample/client/delete_note.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
/**
* You need to pass a \Evernote\Model\Note object
* There are 2 options :
*
* If you already have a Note object (from the getNote method for example)
* just pass it as is to the method.
*
* If you only have a note guid, instantiate an empty note and set the guid :
*
* $note = new \Evernote\Model\Note();
* $note->guid = 'GUID';
*
*/
$note = new \Evernote\Model\Note();
$note->guid = 'GUID';
$client->deleteNote($note);
================================================
FILE: sample/client/find_notes.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
/**
* The search string
*/
$search = new \Evernote\Model\Search('test');
/**
* The notebook to search in
*/
$notebook = null;
/**
* The scope of the search
*/
$scope = \Evernote\Client::SEARCH_SCOPE_BUSINESS;
/**
* The order of the sort
*/
$order = \Evernote\Client::SORT_ORDER_REVERSE | \Evernote\Client::SORT_ORDER_RECENTLY_CREATED;
/**
* The number of results
*/
$maxResult = 5;
$results = $client->findNotesWithSearch($search, $notebook, $scope, $order, $maxResult);
foreach ($results as $result) {
$noteGuid = $result->guid;
$noteType = $result->type;
$noteTitle = $result->title;
$noteCreated = $result->created;
$noteUpdated = $result->updated;
}
================================================
FILE: sample/client/list_notebooks.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$notebooks = array();
$notebooks = $client->listNotebooks();
foreach ($notebooks as $notebook) {
echo "\n\nName : " . $notebook->name;
echo "\nGuid : " . $notebook->guid;
echo "\nIs Business : ";
echo $notebook->isBusinessNotebook()?"Y":"N";
echo "\nIs Default : ";
echo $notebook->isDefaultNotebook()?"Y":"N";
echo "\nIs Linked : ";
echo $notebook->isLinkedNotebook()?"Y":"N";
}
================================================
FILE: sample/client/move_note.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$note = new \Evernote\Model\Note();
$note->title = 'Move a note';
$note->content = new \Evernote\Model\PlainTextNoteContent('Some plain text content.');
$notebook = null;
$uploaded_note = $client->uploadNote($note, $notebook);
echo "\nFirst guid : " . $uploaded_note->guid;
/**
* The second parameter $notebook is - of course - mandatory.
*
* You need to pass a \Evernote\Model\Notebook object
* There are 2 options :
*
* If you already have a Notebook object (from the listNotebooks method for example)
* just pass it as is to the method.
*
* If you only have a notebookGuid, instantiate an empty notebook and set the guid :
*
* $notebook = new \Evernote\Model\Notebook();
* $notebook->guid = $notebook_guid;
*
* The notebook will be automatically retrieved if necessary
*/
$notebook = new \Evernote\Model\Notebook();
$notebook->guid = '%notebook_guid%';
/**
* Be aware that calling this method can change the guid of the note
* if you're moving the note from one notestore to another.
* There is no way to update a note between different notestores, so the process
* is to create a copy of the note is the destination notebook and delete the original note.
* This will put the note in the trash.
*/
$moved_note = $client->moveNote($uploaded_note, $notebook);
/**
* Get the guid of the moved note as it could have changed if the destination notebook is not in the same notestore
*/
echo "\nNew guid : " . $new_guid = $moved_note->guid;
================================================
FILE: sample/client/reminders.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$note = new \Evernote\Model\Note();
$note->title = 'Test note';
$note->content = new \Evernote\Model\PlainTextNoteContent('Some plain text content.');
$uploaded_note = $client->uploadNote($note);
$datetime = new \DateTime('tomorrow');
// Check if the note "is" a reminder
var_dump($uploaded_note->isReminder());
// Set a reminder. The parameter is a timestamp in seconds.
$uploaded_note->setReminder($datetime->getTimestamp());
$client->uploadNote($uploaded_note);
var_dump($uploaded_note->isReminder());
var_dump($uploaded_note->getReminderTime());
// Check if the reminder has been set as done.
var_dump($uploaded_note->isDone());
$uploaded_note->setAsDone();
$client->uploadNote($uploaded_note);
var_dump($uploaded_note->isReminder());
var_dump($uploaded_note->getReminderDoneTime());
var_dump($uploaded_note->isDone());
// Clean the note of any reminder attributes
$uploaded_note->clearReminder();
$client->uploadNote($uploaded_note);
var_dump($uploaded_note->isReminder());
var_dump($uploaded_note->isDone());
================================================
FILE: sample/client/replace_note.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$note = new \Evernote\Model\Note();
$note->title = 'Test note';
$note->content = new \Evernote\Model\PlainTextNoteContent('Some plain text content.');
$uploaded_note = $client->uploadNote($note);
$new_note = new \Evernote\Model\Note();
$new_note->title = 'New note';
$new_note->content = new \Evernote\Model\PlainTextNoteContent('Some new plain text content.');
$client->replaceNote($uploaded_note, $new_note);
================================================
FILE: sample/client/share_note.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/**
* Authorization Tokens are created by either:
* [1] OAuth workflow: https://dev.evernote.com/doc/articles/authentication.php
* or by creating a
* [2] Developer Token: https://dev.evernote.com/doc/articles/authentication.php#devtoken
*/
$token = '%YOUR_TOKEN%';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$client = new \Evernote\Client($token, $sandbox, null, null, $china);
$note = new \Evernote\Model\Note();
$note->title = 'Share a note';
$note->content = new \Evernote\Model\PlainTextNoteContent('Some plain text content.');
$uploaded_note = $client->uploadNote($note);
echo "\nPublic link : " . $client->shareNote($uploaded_note);
================================================
FILE: sample/oauth/index.php
================================================
<?php
require __DIR__ . '/../../vendor/autoload.php';
/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments
*
* The Evernote API 'Sandbox' environment -> SANDBOX.EVERNOTE.COM
* - Create a sample Evernote account at https://sandbox.evernote.com
*
* The Evernote API 'Production' Environment -> WWW.EVERNOTE.COM
* - Activate your Sandboxed API key for production access at https://dev.evernote.com/support/
*
* The Evernote API 'CHINA' Environment -> APP.YINXIANG.COM
* - Activate your Sandboxed API key for Evernote China service access at https://dev.evernote.com/support/
* or https://dev.yinxiang.com/support/. For more information about Evernote China service, please refer
* to https://dev.evernote.com/doc/articles/bootstrap.php
*
* For testing, set $sandbox to true; for production, set $sandbox to false and $china to false;
* for china service, set $sandbox to false and $china to true.
*
*/
$sandbox = true;
$china = false;
$oauth_handler = new \Evernote\Auth\OauthHandler($sandbox, false, $china);
$key = '%key%';
$secret = '%secret%';
$callback = 'http://host/pathto/evernote-cloud-sdk-php/sample/oauth/index.php';
try {
$oauth_data = $oauth_handler->authorize($key, $secret, $callback);
echo "\nOauth Token : " . $oauth_data['oauth_token'];
// Now you can use this token to call the api
$client = new \Evernote\Client($oauth_data['oauth_token']);
} catch (Evernote\Exception\AuthorizationDeniedException $e) {
//If the user decline the authorization, an exception is thrown.
echo "Declined";
}
================================================
FILE: src/EDAM/Error/Types.php
================================================
<?php
namespace EDAM\Error;
/**
* Autogenerated by Thrift Compiler (0.9.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
use Thrift\Base\TBase;
use Thrift\Type\TType;
use Thrift\Type\TMessageType;
use Thrift\Exception\TException;
use Thrift\Exception\TProtocolException;
use Thrift\Protocol\TProtocol;
use Thrift\Protocol\TBinaryProtocolAccelerated;
use Thrift\Exception\TApplicationException;
final class EDAMErrorCode {
const UNKNOWN = 1;
const BAD_DATA_FORMAT = 2;
const PERMISSION_DENIED = 3;
const INTERNAL_ERROR = 4;
const DATA_REQUIRED = 5;
const LIMIT_REACHED = 6;
const QUOTA_REACHED = 7;
const INVALID_AUTH = 8;
const AUTH_EXPIRED = 9;
const DATA_CONFLICT = 10;
const ENML_VALIDATION = 11;
const SHARD_UNAVAILABLE = 12;
const LEN_TOO_SHORT = 13;
const LEN_TOO_LONG = 14;
const TOO_FEW = 15;
const TOO_MANY = 16;
const UNSUPPORTED_OPERATION = 17;
const TAKEN_DOWN = 18;
const RATE_LIMIT_REACHED = 19;
static public $__names = array(
1 => 'UNKNOWN',
2 => 'BAD_DATA_FORMAT',
3 => 'PERMISSION_DENIED',
4 => 'INTERNAL_ERROR',
5 => 'DATA_REQUIRED',
6 => 'LIMIT_REACHED',
7 => 'QUOTA_REACHED',
8 => 'INVALID_AUTH',
9 => 'AUTH_EXPIRED',
10 => 'DATA_CONFLICT',
11 => 'ENML_VALIDATION',
12 => 'SHARD_UNAVAILABLE',
13 => 'LEN_TOO_SHORT',
14 => 'LEN_TOO_LONG',
15 => 'TOO_FEW',
16 => 'TOO_MANY',
17 => 'UNSUPPORTED_OPERATION',
18 => 'TAKEN_DOWN',
19 => 'RATE_LIMIT_REACHED',
);
}
class EDAMUserException extends TException {
static $_TSPEC;
public $errorCode = null;
public $parameter = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'errorCode',
'type' => TType::I32,
),
2 => array(
'var' => 'parameter',
'type' => TType::STRING,
),
);
}
if (is_array($vals)) {
if (isset($vals['errorCode'])) {
$this->errorCode = $vals['errorCode'];
}
if (isset($vals['parameter'])) {
$this->parameter = $vals['parameter'];
}
}
}
public function getName() {
return 'EDAMUserException';
}
public function read($input)
{
$xfer = 0;
$fname = null;
$ftype = 0;
$fid = 0;
$xfer += $input->readStructBegin($fname);
while (true)
{
$xfer += $input->readFieldBegin($fname, $ftype, $fid);
if ($ftype == TType::STOP) {
break;
}
switch ($fid)
{
case 1:
if ($ftype == TType::I32) {
$xfer += $input->readI32($this->errorCode);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->parameter);
} else {
$xfer += $input->skip($ftype);
}
break;
default:
$xfer += $input->skip($ftype);
break;
}
$xfer += $input->readFieldEnd();
}
$xfer += $input->readStructEnd();
return $xfer;
}
public function write($output) {
$xfer = 0;
$xfer += $output->writeStructBegin('EDAMUserException');
if ($this->errorCode !== null) {
$xfer += $output->writeFieldBegin('errorCode', TType::I32, 1);
$xfer += $output->writeI32($this->errorCode);
$xfer += $output->writeFieldEnd();
}
if ($this->parameter !== null) {
$xfer += $output->writeFieldBegin('parameter', TType::STRING, 2);
$xfer += $output->writeString($this->parameter);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}
class EDAMSystemException extends TException {
static $_TSPEC;
public $errorCode = null;
public $message = null;
public $rateLimitDuration = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'errorCode',
'type' => TType::I32,
),
2 => array(
'var' => 'message',
'type' => TType::STRING,
),
3 => array(
'var' => 'rateLimitDuration',
'type' => TType::I32,
),
);
}
if (is_array($vals)) {
if (isset($vals['errorCode'])) {
$this->errorCode = $vals['errorCode'];
}
if (isset($vals['message'])) {
$this->message = $vals['message'];
}
if (isset($vals['rateLimitDuration'])) {
$this->rateLimitDuration = $vals['rateLimitDuration'];
}
}
}
public function getName() {
return 'EDAMSystemException';
}
public function read($input)
{
$xfer = 0;
$fname = null;
$ftype = 0;
$fid = 0;
$xfer += $input->readStructBegin($fname);
while (true)
{
$xfer += $input->readFieldBegin($fname, $ftype, $fid);
if ($ftype == TType::STOP) {
break;
}
switch ($fid)
{
case 1:
if ($ftype == TType::I32) {
$xfer += $input->readI32($this->errorCode);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->message);
} else {
$xfer += $input->skip($ftype);
}
break;
case 3:
if ($ftype == TType::I32) {
$xfer += $input->readI32($this->rateLimitDuration);
} else {
$xfer += $input->skip($ftype);
}
break;
default:
$xfer += $input->skip($ftype);
break;
}
$xfer += $input->readFieldEnd();
}
$xfer += $input->readStructEnd();
return $xfer;
}
public function write($output) {
$xfer = 0;
$xfer += $output->writeStructBegin('EDAMSystemException');
if ($this->errorCode !== null) {
$xfer += $output->writeFieldBegin('errorCode', TType::I32, 1);
$xfer += $output->writeI32($this->errorCode);
$xfer += $output->writeFieldEnd();
}
if ($this->message !== null) {
$xfer += $output->writeFieldBegin('message', TType::STRING, 2);
$xfer += $output->writeString($this->message);
$xfer += $output->writeFieldEnd();
}
if ($this->rateLimitDuration !== null) {
$xfer += $output->writeFieldBegin('rateLimitDuration', TType::I32, 3);
$xfer += $output->writeI32($this->rateLimitDuration);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}
class EDAMNotFoundException extends TException {
static $_TSPEC;
public $identifier = null;
public $key = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'identifier',
'type' => TType::STRING,
),
2 => array(
'var' => 'key',
'type' => TType::STRING,
),
);
}
if (is_array($vals)) {
if (isset($vals['identifier'])) {
$this->identifier = $vals['identifier'];
}
if (isset($vals['key'])) {
$this->key = $vals['key'];
}
}
}
public function getName() {
return 'EDAMNotFoundException';
}
public function read($input)
{
$xfer = 0;
$fname = null;
$ftype = 0;
$fid = 0;
$xfer += $input->readStructBegin($fname);
while (true)
{
$xfer += $input->readFieldBegin($fname, $ftype, $fid);
if ($ftype == TType::STOP) {
break;
}
switch ($fid)
{
case 1:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->identifier);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->key);
} else {
$xfer += $input->skip($ftype);
}
break;
default:
$xfer += $input->skip($ftype);
break;
}
$xfer += $input->readFieldEnd();
}
$xfer += $input->readStructEnd();
return $xfer;
}
public function write($output) {
$xfer = 0;
$xfer += $output->writeStructBegin('EDAMNotFoundException');
if ($this->identifier !== null) {
$xfer += $output->writeFieldBegin('identifier', TType::STRING, 1);
$xfer += $output->writeString($this->identifier);
$xfer += $output->writeFieldEnd();
}
if ($this->key !== null) {
$xfer += $output->writeFieldBegin('key', TType::STRING, 2);
$xfer += $output->writeString($this->key);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}
================================================
FILE: src/EDAM/Limits/Types.php
================================================
<?php
namespace EDAM\Limits;
/**
* Autogenerated by Thrift Compiler (0.9.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
use Thrift\Base\TBase;
use Thrift\Type\TType;
use Thrift\Type\TMessageType;
use Thrift\Exception\TException;
use Thrift\Exception\TProtocolException;
use Thrift\Protocol\TProtocol;
use Thrift\Protocol\TBinaryProtocolAccelerated;
use Thrift\Exception\TApplicationException;
final class Constant extends \Thrift\Type\TConstant {
static protected $EDAM_ATTRIBUTE_LEN_MIN;
static protected $EDAM_ATTRIBUTE_LEN_MAX;
static protected $EDAM_ATTRIBUTE_REGEX;
static protected $EDAM_ATTRIBUTE_LIST_MAX;
static protected $EDAM_ATTRIBUTE_MAP_MAX;
static protected $EDAM_GUID_LEN_MIN;
static protected $EDAM_GUID_LEN_MAX;
static protected $EDAM_GUID_REGEX;
static protected $EDAM_EMAIL_LEN_MIN;
static protected $EDAM_EMAIL_LEN_MAX;
static protected $EDAM_EMAIL_LOCAL_REGEX;
static protected $EDAM_EMAIL_DOMAIN_REGEX;
static protected $EDAM_EMAIL_REGEX;
static protected $EDAM_VAT_REGEX;
static protected $EDAM_TIMEZONE_LEN_MIN;
static protected $EDAM_TIMEZONE_LEN_MAX;
static protected $EDAM_TIMEZONE_REGEX;
static protected $EDAM_MIME_LEN_MIN;
static protected $EDAM_MIME_LEN_MAX;
static protected $EDAM_MIME_REGEX;
static protected $EDAM_MIME_TYPE_GIF;
static protected $EDAM_MIME_TYPE_JPEG;
static protected $EDAM_MIME_TYPE_PNG;
static protected $EDAM_MIME_TYPE_WAV;
static protected $EDAM_MIME_TYPE_MP3;
static protected $EDAM_MIME_TYPE_AMR;
static protected $EDAM_MIME_TYPE_AAC;
static protected $EDAM_MIME_TYPE_M4A;
static protected $EDAM_MIME_TYPE_MP4_VIDEO;
static protected $EDAM_MIME_TYPE_INK;
static protected $EDAM_MIME_TYPE_PDF;
static protected $EDAM_MIME_TYPE_DEFAULT;
static protected $EDAM_MIME_TYPES;
static protected $EDAM_INDEXABLE_RESOURCE_MIME_TYPES;
static protected $EDAM_SEARCH_QUERY_LEN_MIN;
static protected $EDAM_SEARCH_QUERY_LEN_MAX;
static protected $EDAM_SEARCH_QUERY_REGEX;
static protected $EDAM_HASH_LEN;
static protected $EDAM_USER_USERNAME_LEN_MIN;
static protected $EDAM_USER_USERNAME_LEN_MAX;
static protected $EDAM_USER_USERNAME_REGEX;
static protected $EDAM_USER_NAME_LEN_MIN;
static protected $EDAM_USER_NAME_LEN_MAX;
static protected $EDAM_USER_NAME_REGEX;
static protected $EDAM_TAG_NAME_LEN_MIN;
static protected $EDAM_TAG_NAME_LEN_MAX;
static protected $EDAM_TAG_NAME_REGEX;
static protected $EDAM_NOTE_TITLE_LEN_MIN;
static protected $EDAM_NOTE_TITLE_LEN_MAX;
static protected $EDAM_NOTE_TITLE_REGEX;
static protected $EDAM_NOTE_CONTENT_LEN_MIN;
static protected $EDAM_NOTE_CONTENT_LEN_MAX;
static protected $EDAM_APPLICATIONDATA_NAME_LEN_MIN;
static protected $EDAM_APPLICATIONDATA_NAME_LEN_MAX;
static protected $EDAM_APPLICATIONDATA_VALUE_LEN_MIN;
static protected $EDAM_APPLICATIONDATA_VALUE_LEN_MAX;
static protected $EDAM_APPLICATIONDATA_ENTRY_LEN_MAX;
static protected $EDAM_APPLICATIONDATA_NAME_REGEX;
static protected $EDAM_APPLICATIONDATA_VALUE_REGEX;
static protected $EDAM_NOTEBOOK_NAME_LEN_MIN;
static protected $EDAM_NOTEBOOK_NAME_LEN_MAX;
static protected $EDAM_NOTEBOOK_NAME_REGEX;
static protected $EDAM_NOTEBOOK_STACK_LEN_MIN;
static protected $EDAM_NOTEBOOK_STACK_LEN_MAX;
static protected $EDAM_NOTEBOOK_STACK_REGEX;
static protected $EDAM_PUBLISHING_URI_LEN_MIN;
static protected $EDAM_PUBLISHING_URI_LEN_MAX;
static protected $EDAM_PUBLISHING_URI_REGEX;
static protected $EDAM_PUBLISHING_URI_PROHIBITED;
static protected $EDAM_PUBLISHING_DESCRIPTION_LEN_MIN;
static protected $EDAM_PUBLISHING_DESCRIPTION_LEN_MAX;
static protected $EDAM_PUBLISHING_DESCRIPTION_REGEX;
static protected $EDAM_SAVED_SEARCH_NAME_LEN_MIN;
static protected $EDAM_SAVED_SEARCH_NAME_LEN_MAX;
static protected $EDAM_SAVED_SEARCH_NAME_REGEX;
static protected $EDAM_USER_PASSWORD_LEN_MIN;
static protected $EDAM_USER_PASSWORD_LEN_MAX;
static protected $EDAM_USER_PASSWORD_REGEX;
static protected $EDAM_BUSINESS_URI_LEN_MAX;
static protected $EDAM_NOTE_TAGS_MAX;
static protected $EDAM_NOTE_RESOURCES_MAX;
static protected $EDAM_USER_TAGS_MAX;
static protected $EDAM_BUSINESS_TAGS_MAX;
static protected $EDAM_USER_SAVED_SEARCHES_MAX;
static protected $EDAM_USER_NOTES_MAX;
static protected $EDAM_BUSINESS_NOTES_MAX;
static protected $EDAM_USER_NOTEBOOKS_MAX;
static protected $EDAM_BUSINESS_NOTEBOOKS_MAX;
static protected $EDAM_USER_RECENT_MAILED_ADDRESSES_MAX;
static protected $EDAM_USER_MAIL_LIMIT_DAILY_FREE;
static protected $EDAM_USER_MAIL_LIMIT_DAILY_PREMIUM;
static protected $EDAM_USER_UPLOAD_LIMIT_FREE;
static protected $EDAM_USER_UPLOAD_LIMIT_PREMIUM;
static protected $EDAM_USER_UPLOAD_LIMIT_BUSINESS;
static protected $EDAM_NOTE_SIZE_MAX_FREE;
static protected $EDAM_NOTE_SIZE_MAX_PREMIUM;
static protected $EDAM_RESOURCE_SIZE_MAX_FREE;
static protected $EDAM_RESOURCE_SIZE_MAX_PREMIUM;
static protected $EDAM_USER_LINKED_NOTEBOOK_MAX;
static protected $EDAM_USER_LINKED_NOTEBOOK_MAX_PREMIUM;
static protected $EDAM_NOTEBOOK_SHARED_NOTEBOOK_MAX;
static protected $EDAM_NOTE_CONTENT_CLASS_LEN_MIN;
static protected $EDAM_NOTE_CONTENT_CLASS_LEN_MAX;
static protected $EDAM_NOTE_CONTENT_CLASS_REGEX;
static protected $EDAM_HELLO_APP_CONTENT_CLASS_PREFIX;
static protected $EDAM_FOOD_APP_CONTENT_CLASS_PREFIX;
static protected $EDAM_CONTENT_CLASS_HELLO_ENCOUNTER;
static protected $EDAM_CONTENT_CLASS_HELLO_PROFILE;
static protected $EDAM_CONTENT_CLASS_FOOD_MEAL;
static protected $EDAM_CONTENT_CLASS_SKITCH_PREFIX;
static protected $EDAM_CONTENT_CLASS_SKITCH;
static protected $EDAM_CONTENT_CLASS_SKITCH_PDF;
static protected $EDAM_CONTENT_CLASS_PENULTIMATE_PREFIX;
static protected $EDAM_CONTENT_CLASS_PENULTIMATE_NOTEBOOK;
static protected $EDAM_RELATED_PLAINTEXT_LEN_MIN;
static protected $EDAM_RELATED_PLAINTEXT_LEN_MAX;
static protected $EDAM_RELATED_MAX_NOTES;
static protected $EDAM_RELATED_MAX_NOTEBOOKS;
static protected $EDAM_RELATED_MAX_TAGS;
static protected $EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MIN;
static protected $EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MAX;
static protected $EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_REGEX;
static protected $EDAM_BUSINESS_PHONE_NUMBER_LEN_MAX;
static protected $EDAM_PREFERENCE_NAME_LEN_MIN;
static protected $EDAM_PREFERENCE_NAME_LEN_MAX;
static protected $EDAM_PREFERENCE_VALUE_LEN_MIN;
static protected $EDAM_PREFERENCE_VALUE_LEN_MAX;
static protected $EDAM_MAX_PREFERENCES;
static protected $EDAM_MAX_VALUES_PER_PREFERENCE;
static protected $EDAM_PREFERENCE_NAME_REGEX;
static protected $EDAM_PREFERENCE_VALUE_REGEX;
static protected $EDAM_PREFERENCE_SHORTCUTS;
static protected $EDAM_PREFERENCE_SHORTCUTS_MAX_VALUES;
static protected $EDAM_DEVICE_ID_LEN_MAX;
static protected $EDAM_DEVICE_ID_REGEX;
static protected $EDAM_DEVICE_DESCRIPTION_LEN_MAX;
static protected $EDAM_DEVICE_DESCRIPTION_REGEX;
static protected $EDAM_SEARCH_SUGGESTIONS_MAX;
static protected $EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MAX;
static protected $EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MIN;
static protected function init_EDAM_ATTRIBUTE_LEN_MIN() {
return 1;
}
static protected function init_EDAM_ATTRIBUTE_LEN_MAX() {
return 4096;
}
static protected function init_EDAM_ATTRIBUTE_REGEX() {
return "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{1,4096}\$";
}
static protected function init_EDAM_ATTRIBUTE_LIST_MAX() {
return 100;
}
static protected function init_EDAM_ATTRIBUTE_MAP_MAX() {
return 100;
}
static protected function init_EDAM_GUID_LEN_MIN() {
return 36;
}
static protected function init_EDAM_GUID_LEN_MAX() {
return 36;
}
static protected function init_EDAM_GUID_REGEX() {
return "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\$";
}
static protected function init_EDAM_EMAIL_LEN_MIN() {
return 6;
}
static protected function init_EDAM_EMAIL_LEN_MAX() {
return 255;
}
static protected function init_EDAM_EMAIL_LOCAL_REGEX() {
return "^[A-Za-z0-9!#\$%&'*+/=?^_`{|}~-]+(\\.[A-Za-z0-9!#\$%&'*+/=?^_`{|}~-]+)*\$";
}
static protected function init_EDAM_EMAIL_DOMAIN_REGEX() {
return "^[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*\\.([A-Za-z]{2,})\$";
}
static protected function init_EDAM_EMAIL_REGEX() {
return "^[A-Za-z0-9!#\$%&'*+/=?^_`{|}~-]+(\\.[A-Za-z0-9!#\$%&'*+/=?^_`{|}~-]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*\\.([A-Za-z]{2,})\$";
}
static protected function init_EDAM_VAT_REGEX() {
return "^((AT)?U[0-9]{8}|(BE)?0?[0-9]{9}|(BG)?[0-9]{9,10}|(CY)?[0-9]{8}L|(CZ)?[0-9]{8,10}|(DE)?[0-9]{9}|(DK)?[0-9]{8}|(EE)?[0-9]{9}|(EL|GR)?[0-9]{9}|(ES)?[0-9A-Z][0-9]{7}[0-9A-Z]|(FI)?[0-9]{8}|(FR)?[0-9A-Z]{2}[0-9]{9}|(GB)?([0-9]{9}([0-9]{3})?|[A-Z]{2}[0-9]{3})|(HU)?[0-9]{8}|(IE)?[0-9]S[0-9]{5}L|(IT)?[0-9]{11}|(LT)?([0-9]{9}|[0-9]{12})|(LU)?[0-9]{8}|(LV)?[0-9]{11}|(MT)?[0-9]{8}|(NL)?[0-9]{9}B[0-9]{2}|(PL)?[0-9]{10}|(PT)?[0-9]{9}|(RO)?[0-9]{2,10}|(SE)?[0-9]{12}|(SI)?[0-9]{8}|(SK)?[0-9]{10})|[0-9]{9}MVA|[0-9]{6}|CHE[0-9]{9}(TVA|MWST|IVA)\$";
}
static protected function init_EDAM_TIMEZONE_LEN_MIN() {
return 1;
}
static protected function init_EDAM_TIMEZONE_LEN_MAX() {
return 32;
}
static protected function init_EDAM_TIMEZONE_REGEX() {
return "^([A-Za-z_-]+(/[A-Za-z_-]+)*)|(GMT(-|\\+)[0-9]{1,2}(:[0-9]{2})?)\$";
}
static protected function init_EDAM_MIME_LEN_MIN() {
return 3;
}
static protected function init_EDAM_MIME_LEN_MAX() {
return 255;
}
static protected function init_EDAM_MIME_REGEX() {
return "^[A-Za-z]+/[A-Za-z0-9._+-]+\$";
}
static protected function init_EDAM_MIME_TYPE_GIF() {
return "image/gif";
}
static protected function init_EDAM_MIME_TYPE_JPEG() {
return "image/jpeg";
}
static protected function init_EDAM_MIME_TYPE_PNG() {
return "image/png";
}
static protected function init_EDAM_MIME_TYPE_WAV() {
return "audio/wav";
}
static protected function init_EDAM_MIME_TYPE_MP3() {
return "audio/mpeg";
}
static protected function init_EDAM_MIME_TYPE_AMR() {
return "audio/amr";
}
static protected function init_EDAM_MIME_TYPE_AAC() {
return "audio/aac";
}
static protected function init_EDAM_MIME_TYPE_M4A() {
return "audio/mp4";
}
static protected function init_EDAM_MIME_TYPE_MP4_VIDEO() {
return "video/mp4";
}
static protected function init_EDAM_MIME_TYPE_INK() {
return "application/vnd.evernote.ink";
}
static protected function init_EDAM_MIME_TYPE_PDF() {
return "application/pdf";
}
static protected function init_EDAM_MIME_TYPE_DEFAULT() {
return "application/octet-stream";
}
static protected function init_EDAM_MIME_TYPES() {
return array(
"image/gif" => true,
"image/jpeg" => true,
"image/png" => true,
"audio/wav" => true,
"audio/mpeg" => true,
"audio/amr" => true,
"application/vnd.evernote.ink" => true,
"application/pdf" => true,
"video/mp4" => true,
"audio/aac" => true,
"audio/mp4" => true,
);
}
static protected function init_EDAM_INDEXABLE_RESOURCE_MIME_TYPES() {
return array(
"application/msword" => true,
"application/mspowerpoint" => true,
"application/excel" => true,
"application/vnd.ms-word" => true,
"application/vnd.ms-powerpoint" => true,
"application/vnd.ms-excel" => true,
"application/vnd.openxmlformats-officedocument.wordprocessingml.document" => true,
"application/vnd.openxmlformats-officedocument.presentationml.presentation" => true,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" => true,
"application/vnd.apple.pages" => true,
"application/vnd.apple.numbers" => true,
"application/vnd.apple.keynote" => true,
"application/x-iwork-pages-sffpages" => true,
"application/x-iwork-numbers-sffnumbers" => true,
"application/x-iwork-keynote-sffkey" => true,
);
}
static protected function init_EDAM_SEARCH_QUERY_LEN_MIN() {
return 0;
}
static protected function init_EDAM_SEARCH_QUERY_LEN_MAX() {
return 1024;
}
static protected function init_EDAM_SEARCH_QUERY_REGEX() {
return "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{0,1024}\$";
}
static protected function init_EDAM_HASH_LEN() {
return 16;
}
static protected function init_EDAM_USER_USERNAME_LEN_MIN() {
return 1;
}
static protected function init_EDAM_USER_USERNAME_LEN_MAX() {
return 64;
}
static protected function init_EDAM_USER_USERNAME_REGEX() {
return "^[a-z0-9]([a-z0-9_-]{0,62}[a-z0-9])?\$";
}
static protected function init_EDAM_USER_NAME_LEN_MIN() {
return 1;
}
static protected function init_EDAM_USER_NAME_LEN_MAX() {
return 255;
}
static protected function init_EDAM_USER_NAME_REGEX() {
return "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{1,255}\$";
}
static protected function init_EDAM_TAG_NAME_LEN_MIN() {
return 1;
}
static protected function init_EDAM_TAG_NAME_LEN_MAX() {
return 100;
}
static protected function init_EDAM_TAG_NAME_REGEX() {
return "^[^,\\p{Cc}\\p{Z}]([^,\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^,\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_NOTE_TITLE_LEN_MIN() {
return 1;
}
static protected function init_EDAM_NOTE_TITLE_LEN_MAX() {
return 255;
}
static protected function init_EDAM_NOTE_TITLE_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,253}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_NOTE_CONTENT_LEN_MIN() {
return 0;
}
static protected function init_EDAM_NOTE_CONTENT_LEN_MAX() {
return 5242880;
}
static protected function init_EDAM_APPLICATIONDATA_NAME_LEN_MIN() {
return 3;
}
static protected function init_EDAM_APPLICATIONDATA_NAME_LEN_MAX() {
return 32;
}
static protected function init_EDAM_APPLICATIONDATA_VALUE_LEN_MIN() {
return 0;
}
static protected function init_EDAM_APPLICATIONDATA_VALUE_LEN_MAX() {
return 4092;
}
static protected function init_EDAM_APPLICATIONDATA_ENTRY_LEN_MAX() {
return 4095;
}
static protected function init_EDAM_APPLICATIONDATA_NAME_REGEX() {
return "^[A-Za-z0-9_.-]{3,32}\$";
}
static protected function init_EDAM_APPLICATIONDATA_VALUE_REGEX() {
return "^[^\\p{Cc}]{0,4092}\$";
}
static protected function init_EDAM_NOTEBOOK_NAME_LEN_MIN() {
return 1;
}
static protected function init_EDAM_NOTEBOOK_NAME_LEN_MAX() {
return 100;
}
static protected function init_EDAM_NOTEBOOK_NAME_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_NOTEBOOK_STACK_LEN_MIN() {
return 1;
}
static protected function init_EDAM_NOTEBOOK_STACK_LEN_MAX() {
return 100;
}
static protected function init_EDAM_NOTEBOOK_STACK_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_PUBLISHING_URI_LEN_MIN() {
return 1;
}
static protected function init_EDAM_PUBLISHING_URI_LEN_MAX() {
return 255;
}
static protected function init_EDAM_PUBLISHING_URI_REGEX() {
return "^[a-zA-Z0-9.~_+-]{1,255}\$";
}
static protected function init_EDAM_PUBLISHING_URI_PROHIBITED() {
return array(
".." => true,
);
}
static protected function init_EDAM_PUBLISHING_DESCRIPTION_LEN_MIN() {
return 1;
}
static protected function init_EDAM_PUBLISHING_DESCRIPTION_LEN_MAX() {
return 200;
}
static protected function init_EDAM_PUBLISHING_DESCRIPTION_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,198}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_SAVED_SEARCH_NAME_LEN_MIN() {
return 1;
}
static protected function init_EDAM_SAVED_SEARCH_NAME_LEN_MAX() {
return 100;
}
static protected function init_EDAM_SAVED_SEARCH_NAME_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_USER_PASSWORD_LEN_MIN() {
return 6;
}
static protected function init_EDAM_USER_PASSWORD_LEN_MAX() {
return 64;
}
static protected function init_EDAM_USER_PASSWORD_REGEX() {
return "^[A-Za-z0-9!#\$%&'()*+,./:;<=>?@^_`{|}~\\[\\]\\\\-]{6,64}\$";
}
static protected function init_EDAM_BUSINESS_URI_LEN_MAX() {
return 32;
}
static protected function init_EDAM_NOTE_TAGS_MAX() {
return 100;
}
static protected function init_EDAM_NOTE_RESOURCES_MAX() {
return 1000;
}
static protected function init_EDAM_USER_TAGS_MAX() {
return 100000;
}
static protected function init_EDAM_BUSINESS_TAGS_MAX() {
return 100000;
}
static protected function init_EDAM_USER_SAVED_SEARCHES_MAX() {
return 100;
}
static protected function init_EDAM_USER_NOTES_MAX() {
return 100000;
}
static protected function init_EDAM_BUSINESS_NOTES_MAX() {
return 500000;
}
static protected function init_EDAM_USER_NOTEBOOKS_MAX() {
return 250;
}
static protected function init_EDAM_BUSINESS_NOTEBOOKS_MAX() {
return 5000;
}
static protected function init_EDAM_USER_RECENT_MAILED_ADDRESSES_MAX() {
return 10;
}
static protected function init_EDAM_USER_MAIL_LIMIT_DAILY_FREE() {
return 50;
}
static protected function init_EDAM_USER_MAIL_LIMIT_DAILY_PREMIUM() {
return 200;
}
static protected function init_EDAM_USER_UPLOAD_LIMIT_FREE() {
return 62914560;
}
static protected function init_EDAM_USER_UPLOAD_LIMIT_PREMIUM() {
return 1073741824;
}
static protected function init_EDAM_USER_UPLOAD_LIMIT_BUSINESS() {
return 2147483647;
}
static protected function init_EDAM_NOTE_SIZE_MAX_FREE() {
return 26214400;
}
static protected function init_EDAM_NOTE_SIZE_MAX_PREMIUM() {
return 104857600;
}
static protected function init_EDAM_RESOURCE_SIZE_MAX_FREE() {
return 26214400;
}
static protected function init_EDAM_RESOURCE_SIZE_MAX_PREMIUM() {
return 104857600;
}
static protected function init_EDAM_USER_LINKED_NOTEBOOK_MAX() {
return 100;
}
static protected function init_EDAM_USER_LINKED_NOTEBOOK_MAX_PREMIUM() {
return 250;
}
static protected function init_EDAM_NOTEBOOK_SHARED_NOTEBOOK_MAX() {
return 250;
}
static protected function init_EDAM_NOTE_CONTENT_CLASS_LEN_MIN() {
return 3;
}
static protected function init_EDAM_NOTE_CONTENT_CLASS_LEN_MAX() {
return 32;
}
static protected function init_EDAM_NOTE_CONTENT_CLASS_REGEX() {
return "^[A-Za-z0-9_.-]{3,32}\$";
}
static protected function init_EDAM_HELLO_APP_CONTENT_CLASS_PREFIX() {
return "evernote.hello.";
}
static protected function init_EDAM_FOOD_APP_CONTENT_CLASS_PREFIX() {
return "evernote.food.";
}
static protected function init_EDAM_CONTENT_CLASS_HELLO_ENCOUNTER() {
return "evernote.hello.encounter";
}
static protected function init_EDAM_CONTENT_CLASS_HELLO_PROFILE() {
return "evernote.hello.profile";
}
static protected function init_EDAM_CONTENT_CLASS_FOOD_MEAL() {
return "evernote.food.meal";
}
static protected function init_EDAM_CONTENT_CLASS_SKITCH_PREFIX() {
return "evernote.skitch";
}
static protected function init_EDAM_CONTENT_CLASS_SKITCH() {
return "evernote.skitch";
}
static protected function init_EDAM_CONTENT_CLASS_SKITCH_PDF() {
return "evernote.skitch.pdf";
}
static protected function init_EDAM_CONTENT_CLASS_PENULTIMATE_PREFIX() {
return "evernote.penultimate.";
}
static protected function init_EDAM_CONTENT_CLASS_PENULTIMATE_NOTEBOOK() {
return "evernote.penultimate.notebook";
}
static protected function init_EDAM_RELATED_PLAINTEXT_LEN_MIN() {
return 1;
}
static protected function init_EDAM_RELATED_PLAINTEXT_LEN_MAX() {
return 131072;
}
static protected function init_EDAM_RELATED_MAX_NOTES() {
return 25;
}
static protected function init_EDAM_RELATED_MAX_NOTEBOOKS() {
return 1;
}
static protected function init_EDAM_RELATED_MAX_TAGS() {
return 25;
}
static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MIN() {
return 1;
}
static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MAX() {
return 200;
}
static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_REGEX() {
return "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,198}[^\\p{Cc}\\p{Z}])?\$";
}
static protected function init_EDAM_BUSINESS_PHONE_NUMBER_LEN_MAX() {
return 20;
}
static protected function init_EDAM_PREFERENCE_NAME_LEN_MIN() {
return 3;
}
static protected function init_EDAM_PREFERENCE_NAME_LEN_MAX() {
return 32;
}
static protected function init_EDAM_PREFERENCE_VALUE_LEN_MIN() {
return 1;
}
static protected function init_EDAM_PREFERENCE_VALUE_LEN_MAX() {
return 1024;
}
static protected function init_EDAM_MAX_PREFERENCES() {
return 100;
}
static protected function init_EDAM_MAX_VALUES_PER_PREFERENCE() {
return 256;
}
static protected function init_EDAM_PREFERENCE_NAME_REGEX() {
return "^[A-Za-z0-9_.-]{3,32}\$";
}
static protected function init_EDAM_PREFERENCE_VALUE_REGEX() {
return "^[^\\p{Cc}]{1,1024}\$";
}
static protected function init_EDAM_PREFERENCE_SHORTCUTS() {
return "evernote.shortcuts";
}
static protected function init_EDAM_PREFERENCE_SHORTCUTS_MAX_VALUES() {
return 250;
}
static protected function init_EDAM_DEVICE_ID_LEN_MAX() {
return 32;
}
static protected function init_EDAM_DEVICE_ID_REGEX() {
return "^[^\\p{Cc}]{1,32}\$";
}
static protected function init_EDAM_DEVICE_DESCRIPTION_LEN_MAX() {
return 64;
}
static protected function init_EDAM_DEVICE_DESCRIPTION_REGEX() {
return "^[^\\p{Cc}]{1,64}\$";
}
static protected function init_EDAM_SEARCH_SUGGESTIONS_MAX() {
return 10;
}
static protected function init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MAX() {
return 1024;
}
static protected function init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MIN() {
return 2;
}
}
================================================
FILE: src/EDAM/NoteStore/NoteStore.php
================================================
<?php
namespace EDAM\NoteStore;
/**
* Autogenerated by Thrift Compiler (0.9.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
use Thrift\Base\TBase;
use Thrift\Type\TType;
use Thrift\Type\TMessageType;
use Thrift\Exception\TException;
use Thrift\Exception\TProtocolException;
use Thrift\Protocol\TProtocol;
use Thrift\Protocol\TBinaryProtocolAccelerated;
use Thrift\Exception\TApplicationException;
interface NoteStoreIf {
public function getSyncState($authenticationToken);
public function getSyncStateWithMetrics($authenticationToken, \EDAM\NoteStore\ClientUsageMetrics $clientMetrics);
public function getSyncChunk($authenticationToken, $afterUSN, $maxEntries, $fullSyncOnly);
public function getFilteredSyncChunk($authenticationToken, $afterUSN, $maxEntries, \EDAM\NoteStore\SyncChunkFilter $filter);
public function getLinkedNotebookSyncState($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook);
public function getLinkedNotebookSyncChunk($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook, $afterUSN, $maxEntries, $fullSyncOnly);
public function listNotebooks($authenticationToken);
public function getNotebook($authenticationToken, $guid);
public function getDefaultNotebook($authenticationToken);
public function createNotebook($authenticationToken, \EDAM\Types\Notebook $notebook);
public function updateNotebook($authenticationToken, \EDAM\Types\Notebook $notebook);
public function expungeNotebook($authenticationToken, $guid);
public function listTags($authenticationToken);
public function listTagsByNotebook($authenticationToken, $notebookGuid);
public function getTag($authenticationToken, $guid);
public function createTag($authenticationToken, \EDAM\Types\Tag $tag);
public function updateTag($authenticationToken, \EDAM\Types\Tag $tag);
public function untagAll($authenticationToken, $guid);
public function expungeTag($authenticationToken, $guid);
public function listSearches($authenticationToken);
public function getSearch($authenticationToken, $guid);
public function createSearch($authenticationToken, \EDAM\Types\SavedSearch $search);
public function updateSearch($authenticationToken, \EDAM\Types\SavedSearch $search);
public function expungeSearch($authenticationToken, $guid);
public function findNotes($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes);
public function findNoteOffset($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $guid);
public function findNotesMetadata($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes, \EDAM\NoteStore\NotesMetadataResultSpec $resultSpec);
public function findNoteCounts($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $withTrash);
public function getNote($authenticationToken, $guid, $withContent, $withResourcesData, $withResourcesRecognition, $withResourcesAlternateData);
public function getNoteApplicationData($authenticationToken, $guid);
public function getNoteApplicationDataEntry($authenticationToken, $guid, $key);
public function setNoteApplicationDataEntry($authenticationToken, $guid, $key, $value);
public function unsetNoteApplicationDataEntry($authenticationToken, $guid, $key);
public function getNoteContent($authenticationToken, $guid);
public function getNoteSearchText($authenticationToken, $guid, $noteOnly, $tokenizeForIndexing);
public function getResourceSearchText($authenticationToken, $guid);
public function getNoteTagNames($authenticationToken, $guid);
public function createNote($authenticationToken, \EDAM\Types\Note $note);
public function updateNote($authenticationToken, \EDAM\Types\Note $note);
public function deleteNote($authenticationToken, $guid);
public function expungeNote($authenticationToken, $guid);
public function expungeNotes($authenticationToken, $noteGuids);
public function expungeInactiveNotes($authenticationToken);
public function copyNote($authenticationToken, $noteGuid, $toNotebookGuid);
public function listNoteVersions($authenticationToken, $noteGuid);
public function getNoteVersion($authenticationToken, $noteGuid, $updateSequenceNum, $withResourcesData, $withResourcesRecognition, $withResourcesAlternateData);
public function getResource($authenticationToken, $guid, $withData, $withRecognition, $withAttributes, $withAlternateData);
public function getResourceApplicationData($authenticationToken, $guid);
public function getResourceApplicationDataEntry($authenticationToken, $guid, $key);
public function setResourceApplicationDataEntry($authenticationToken, $guid, $key, $value);
public function unsetResourceApplicationDataEntry($authenticationToken, $guid, $key);
public function updateResource($authenticationToken, \EDAM\Types\Resource $resource);
public function getResourceData($authenticationToken, $guid);
public function getResourceByHash($authenticationToken, $noteGuid, $contentHash, $withData, $withRecognition, $withAlternateData);
public function getResourceRecognition($authenticationToken, $guid);
public function getResourceAlternateData($authenticationToken, $guid);
public function getResourceAttributes($authenticationToken, $guid);
public function getPublicNotebook($userId, $publicUri);
public function createSharedNotebook($authenticationToken, \EDAM\Types\SharedNotebook $sharedNotebook);
public function updateSharedNotebook($authenticationToken, \EDAM\Types\SharedNotebook $sharedNotebook);
public function setSharedNotebookRecipientSettings($authenticationToken, $sharedNotebookId, \EDAM\Types\SharedNotebookRecipientSettings $recipientSettings);
public function sendMessageToSharedNotebookMembers($authenticationToken, $notebookGuid, $messageText, $recipients);
public function listSharedNotebooks($authenticationToken);
public function expungeSharedNotebooks($authenticationToken, $sharedNotebookIds);
public function createLinkedNotebook($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook);
public function updateLinkedNotebook($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook);
public function listLinkedNotebooks($authenticationToken);
public function expungeLinkedNotebook($authenticationToken, $guid);
public function authenticateToSharedNotebook($shareKey, $authenticationToken);
public function getSharedNotebookByAuth($authenticationToken);
public function emailNote($authenticationToken, \EDAM\NoteStore\NoteEmailParameters $parameters);
public function shareNote($authenticationToken, $guid);
public function stopSharingNote($authenticationToken, $guid);
public function authenticateToSharedNote($guid, $noteKey, $authenticationToken);
public function findRelated($authenticationToken, \EDAM\NoteStore\RelatedQuery $query, \EDAM\NoteStore\RelatedResultSpec $resultSpec);
}
class NoteStoreClient implements \EDAM\NoteStore\NoteStoreIf {
protected $input_ = null;
protected $output_ = null;
protected $seqid_ = 0;
public function __construct($input, $output=null) {
$this->input_ = $input;
$this->output_ = $output ? $output : $input;
}
public function getSyncState($authenticationToken)
{
$this->send_getSyncState($authenticationToken);
return $this->recv_getSyncState();
}
public function send_getSyncState($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_getSyncState_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getSyncState', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getSyncState', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getSyncState()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getSyncState_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getSyncState_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("getSyncState failed: unknown result");
}
public function getSyncStateWithMetrics($authenticationToken, \EDAM\NoteStore\ClientUsageMetrics $clientMetrics)
{
$this->send_getSyncStateWithMetrics($authenticationToken, $clientMetrics);
return $this->recv_getSyncStateWithMetrics();
}
public function send_getSyncStateWithMetrics($authenticationToken, \EDAM\NoteStore\ClientUsageMetrics $clientMetrics)
{
$args = new \EDAM\NoteStore\NoteStore_getSyncStateWithMetrics_args();
$args->authenticationToken = $authenticationToken;
$args->clientMetrics = $clientMetrics;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getSyncStateWithMetrics', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getSyncStateWithMetrics', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getSyncStateWithMetrics()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getSyncStateWithMetrics_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getSyncStateWithMetrics_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("getSyncStateWithMetrics failed: unknown result");
}
public function getSyncChunk($authenticationToken, $afterUSN, $maxEntries, $fullSyncOnly)
{
$this->send_getSyncChunk($authenticationToken, $afterUSN, $maxEntries, $fullSyncOnly);
return $this->recv_getSyncChunk();
}
public function send_getSyncChunk($authenticationToken, $afterUSN, $maxEntries, $fullSyncOnly)
{
$args = new \EDAM\NoteStore\NoteStore_getSyncChunk_args();
$args->authenticationToken = $authenticationToken;
$args->afterUSN = $afterUSN;
$args->maxEntries = $maxEntries;
$args->fullSyncOnly = $fullSyncOnly;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getSyncChunk', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getSyncChunk', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getSyncChunk()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getSyncChunk_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getSyncChunk_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("getSyncChunk failed: unknown result");
}
public function getFilteredSyncChunk($authenticationToken, $afterUSN, $maxEntries, \EDAM\NoteStore\SyncChunkFilter $filter)
{
$this->send_getFilteredSyncChunk($authenticationToken, $afterUSN, $maxEntries, $filter);
return $this->recv_getFilteredSyncChunk();
}
public function send_getFilteredSyncChunk($authenticationToken, $afterUSN, $maxEntries, \EDAM\NoteStore\SyncChunkFilter $filter)
{
$args = new \EDAM\NoteStore\NoteStore_getFilteredSyncChunk_args();
$args->authenticationToken = $authenticationToken;
$args->afterUSN = $afterUSN;
$args->maxEntries = $maxEntries;
$args->filter = $filter;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getFilteredSyncChunk', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getFilteredSyncChunk', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getFilteredSyncChunk()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getFilteredSyncChunk_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getFilteredSyncChunk_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("getFilteredSyncChunk failed: unknown result");
}
public function getLinkedNotebookSyncState($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook)
{
$this->send_getLinkedNotebookSyncState($authenticationToken, $linkedNotebook);
return $this->recv_getLinkedNotebookSyncState();
}
public function send_getLinkedNotebookSyncState($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook)
{
$args = new \EDAM\NoteStore\NoteStore_getLinkedNotebookSyncState_args();
$args->authenticationToken = $authenticationToken;
$args->linkedNotebook = $linkedNotebook;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getLinkedNotebookSyncState', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getLinkedNotebookSyncState', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getLinkedNotebookSyncState()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getLinkedNotebookSyncState_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getLinkedNotebookSyncState_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getLinkedNotebookSyncState failed: unknown result");
}
public function getLinkedNotebookSyncChunk($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook, $afterUSN, $maxEntries, $fullSyncOnly)
{
$this->send_getLinkedNotebookSyncChunk($authenticationToken, $linkedNotebook, $afterUSN, $maxEntries, $fullSyncOnly);
return $this->recv_getLinkedNotebookSyncChunk();
}
public function send_getLinkedNotebookSyncChunk($authenticationToken, \EDAM\Types\LinkedNotebook $linkedNotebook, $afterUSN, $maxEntries, $fullSyncOnly)
{
$args = new \EDAM\NoteStore\NoteStore_getLinkedNotebookSyncChunk_args();
$args->authenticationToken = $authenticationToken;
$args->linkedNotebook = $linkedNotebook;
$args->afterUSN = $afterUSN;
$args->maxEntries = $maxEntries;
$args->fullSyncOnly = $fullSyncOnly;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getLinkedNotebookSyncChunk', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getLinkedNotebookSyncChunk', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getLinkedNotebookSyncChunk()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getLinkedNotebookSyncChunk_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getLinkedNotebookSyncChunk_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getLinkedNotebookSyncChunk failed: unknown result");
}
public function listNotebooks($authenticationToken)
{
$this->send_listNotebooks($authenticationToken);
return $this->recv_listNotebooks();
}
public function send_listNotebooks($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_listNotebooks_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'listNotebooks', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('listNotebooks', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_listNotebooks()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_listNotebooks_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_listNotebooks_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("listNotebooks failed: unknown result");
}
public function getNotebook($authenticationToken, $guid)
{
$this->send_getNotebook($authenticationToken, $guid);
return $this->recv_getNotebook();
}
public function send_getNotebook($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getNotebook_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNotebook failed: unknown result");
}
public function getDefaultNotebook($authenticationToken)
{
$this->send_getDefaultNotebook($authenticationToken);
return $this->recv_getDefaultNotebook();
}
public function send_getDefaultNotebook($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_getDefaultNotebook_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getDefaultNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getDefaultNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getDefaultNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getDefaultNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getDefaultNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("getDefaultNotebook failed: unknown result");
}
public function createNotebook($authenticationToken, \EDAM\Types\Notebook $notebook)
{
$this->send_createNotebook($authenticationToken, $notebook);
return $this->recv_createNotebook();
}
public function send_createNotebook($authenticationToken, \EDAM\Types\Notebook $notebook)
{
$args = new \EDAM\NoteStore\NoteStore_createNotebook_args();
$args->authenticationToken = $authenticationToken;
$args->notebook = $notebook;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'createNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('createNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_createNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_createNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_createNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("createNotebook failed: unknown result");
}
public function updateNotebook($authenticationToken, \EDAM\Types\Notebook $notebook)
{
$this->send_updateNotebook($authenticationToken, $notebook);
return $this->recv_updateNotebook();
}
public function send_updateNotebook($authenticationToken, \EDAM\Types\Notebook $notebook)
{
$args = new \EDAM\NoteStore\NoteStore_updateNotebook_args();
$args->authenticationToken = $authenticationToken;
$args->notebook = $notebook;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'updateNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('updateNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_updateNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_updateNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_updateNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("updateNotebook failed: unknown result");
}
public function expungeNotebook($authenticationToken, $guid)
{
$this->send_expungeNotebook($authenticationToken, $guid);
return $this->recv_expungeNotebook();
}
public function send_expungeNotebook($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_expungeNotebook_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("expungeNotebook failed: unknown result");
}
public function listTags($authenticationToken)
{
$this->send_listTags($authenticationToken);
return $this->recv_listTags();
}
public function send_listTags($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_listTags_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'listTags', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('listTags', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_listTags()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_listTags_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_listTags_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("listTags failed: unknown result");
}
public function listTagsByNotebook($authenticationToken, $notebookGuid)
{
$this->send_listTagsByNotebook($authenticationToken, $notebookGuid);
return $this->recv_listTagsByNotebook();
}
public function send_listTagsByNotebook($authenticationToken, $notebookGuid)
{
$args = new \EDAM\NoteStore\NoteStore_listTagsByNotebook_args();
$args->authenticationToken = $authenticationToken;
$args->notebookGuid = $notebookGuid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'listTagsByNotebook', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('listTagsByNotebook', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_listTagsByNotebook()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_listTagsByNotebook_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_listTagsByNotebook_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("listTagsByNotebook failed: unknown result");
}
public function getTag($authenticationToken, $guid)
{
$this->send_getTag($authenticationToken, $guid);
return $this->recv_getTag();
}
public function send_getTag($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getTag_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getTag', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getTag', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getTag()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getTag_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getTag_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getTag failed: unknown result");
}
public function createTag($authenticationToken, \EDAM\Types\Tag $tag)
{
$this->send_createTag($authenticationToken, $tag);
return $this->recv_createTag();
}
public function send_createTag($authenticationToken, \EDAM\Types\Tag $tag)
{
$args = new \EDAM\NoteStore\NoteStore_createTag_args();
$args->authenticationToken = $authenticationToken;
$args->tag = $tag;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'createTag', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('createTag', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_createTag()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_createTag_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_createTag_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("createTag failed: unknown result");
}
public function updateTag($authenticationToken, \EDAM\Types\Tag $tag)
{
$this->send_updateTag($authenticationToken, $tag);
return $this->recv_updateTag();
}
public function send_updateTag($authenticationToken, \EDAM\Types\Tag $tag)
{
$args = new \EDAM\NoteStore\NoteStore_updateTag_args();
$args->authenticationToken = $authenticationToken;
$args->tag = $tag;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'updateTag', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('updateTag', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_updateTag()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_updateTag_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_updateTag_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("updateTag failed: unknown result");
}
public function untagAll($authenticationToken, $guid)
{
$this->send_untagAll($authenticationToken, $guid);
$this->recv_untagAll();
}
public function send_untagAll($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_untagAll_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'untagAll', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('untagAll', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_untagAll()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_untagAll_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_untagAll_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
return;
}
public function expungeTag($authenticationToken, $guid)
{
$this->send_expungeTag($authenticationToken, $guid);
return $this->recv_expungeTag();
}
public function send_expungeTag($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_expungeTag_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeTag', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeTag', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeTag()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeTag_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeTag_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("expungeTag failed: unknown result");
}
public function listSearches($authenticationToken)
{
$this->send_listSearches($authenticationToken);
return $this->recv_listSearches();
}
public function send_listSearches($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_listSearches_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'listSearches', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('listSearches', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_listSearches()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_listSearches_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_listSearches_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("listSearches failed: unknown result");
}
public function getSearch($authenticationToken, $guid)
{
$this->send_getSearch($authenticationToken, $guid);
return $this->recv_getSearch();
}
public function send_getSearch($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getSearch_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getSearch', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getSearch', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getSearch()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getSearch_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getSearch_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getSearch failed: unknown result");
}
public function createSearch($authenticationToken, \EDAM\Types\SavedSearch $search)
{
$this->send_createSearch($authenticationToken, $search);
return $this->recv_createSearch();
}
public function send_createSearch($authenticationToken, \EDAM\Types\SavedSearch $search)
{
$args = new \EDAM\NoteStore\NoteStore_createSearch_args();
$args->authenticationToken = $authenticationToken;
$args->search = $search;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'createSearch', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('createSearch', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_createSearch()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_createSearch_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_createSearch_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
throw new \Exception("createSearch failed: unknown result");
}
public function updateSearch($authenticationToken, \EDAM\Types\SavedSearch $search)
{
$this->send_updateSearch($authenticationToken, $search);
return $this->recv_updateSearch();
}
public function send_updateSearch($authenticationToken, \EDAM\Types\SavedSearch $search)
{
$args = new \EDAM\NoteStore\NoteStore_updateSearch_args();
$args->authenticationToken = $authenticationToken;
$args->search = $search;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'updateSearch', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('updateSearch', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_updateSearch()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_updateSearch_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_updateSearch_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("updateSearch failed: unknown result");
}
public function expungeSearch($authenticationToken, $guid)
{
$this->send_expungeSearch($authenticationToken, $guid);
return $this->recv_expungeSearch();
}
public function send_expungeSearch($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_expungeSearch_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeSearch', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeSearch', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeSearch()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeSearch_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeSearch_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("expungeSearch failed: unknown result");
}
public function findNotes($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes)
{
$this->send_findNotes($authenticationToken, $filter, $offset, $maxNotes);
return $this->recv_findNotes();
}
public function send_findNotes($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes)
{
$args = new \EDAM\NoteStore\NoteStore_findNotes_args();
$args->authenticationToken = $authenticationToken;
$args->filter = $filter;
$args->offset = $offset;
$args->maxNotes = $maxNotes;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'findNotes', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('findNotes', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_findNotes()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_findNotes_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_findNotes_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("findNotes failed: unknown result");
}
public function findNoteOffset($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $guid)
{
$this->send_findNoteOffset($authenticationToken, $filter, $guid);
return $this->recv_findNoteOffset();
}
public function send_findNoteOffset($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_findNoteOffset_args();
$args->authenticationToken = $authenticationToken;
$args->filter = $filter;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'findNoteOffset', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('findNoteOffset', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_findNoteOffset()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_findNoteOffset_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_findNoteOffset_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("findNoteOffset failed: unknown result");
}
public function findNotesMetadata($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes, \EDAM\NoteStore\NotesMetadataResultSpec $resultSpec)
{
$this->send_findNotesMetadata($authenticationToken, $filter, $offset, $maxNotes, $resultSpec);
return $this->recv_findNotesMetadata();
}
public function send_findNotesMetadata($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $offset, $maxNotes, \EDAM\NoteStore\NotesMetadataResultSpec $resultSpec)
{
$args = new \EDAM\NoteStore\NoteStore_findNotesMetadata_args();
$args->authenticationToken = $authenticationToken;
$args->filter = $filter;
$args->offset = $offset;
$args->maxNotes = $maxNotes;
$args->resultSpec = $resultSpec;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'findNotesMetadata', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('findNotesMetadata', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_findNotesMetadata()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_findNotesMetadata_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_findNotesMetadata_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("findNotesMetadata failed: unknown result");
}
public function findNoteCounts($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $withTrash)
{
$this->send_findNoteCounts($authenticationToken, $filter, $withTrash);
return $this->recv_findNoteCounts();
}
public function send_findNoteCounts($authenticationToken, \EDAM\NoteStore\NoteFilter $filter, $withTrash)
{
$args = new \EDAM\NoteStore\NoteStore_findNoteCounts_args();
$args->authenticationToken = $authenticationToken;
$args->filter = $filter;
$args->withTrash = $withTrash;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'findNoteCounts', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('findNoteCounts', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_findNoteCounts()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_findNoteCounts_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_findNoteCounts_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("findNoteCounts failed: unknown result");
}
public function getNote($authenticationToken, $guid, $withContent, $withResourcesData, $withResourcesRecognition, $withResourcesAlternateData)
{
$this->send_getNote($authenticationToken, $guid, $withContent, $withResourcesData, $withResourcesRecognition, $withResourcesAlternateData);
return $this->recv_getNote();
}
public function send_getNote($authenticationToken, $guid, $withContent, $withResourcesData, $withResourcesRecognition, $withResourcesAlternateData)
{
$args = new \EDAM\NoteStore\NoteStore_getNote_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$args->withContent = $withContent;
$args->withResourcesData = $withResourcesData;
$args->withResourcesRecognition = $withResourcesRecognition;
$args->withResourcesAlternateData = $withResourcesAlternateData;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNote', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNote', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNote()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNote_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNote_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNote failed: unknown result");
}
public function getNoteApplicationData($authenticationToken, $guid)
{
$this->send_getNoteApplicationData($authenticationToken, $guid);
return $this->recv_getNoteApplicationData();
}
public function send_getNoteApplicationData($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getNoteApplicationData_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNoteApplicationData', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNoteApplicationData', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNoteApplicationData()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNoteApplicationData_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNoteApplicationData_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNoteApplicationData failed: unknown result");
}
public function getNoteApplicationDataEntry($authenticationToken, $guid, $key)
{
$this->send_getNoteApplicationDataEntry($authenticationToken, $guid, $key);
return $this->recv_getNoteApplicationDataEntry();
}
public function send_getNoteApplicationDataEntry($authenticationToken, $guid, $key)
{
$args = new \EDAM\NoteStore\NoteStore_getNoteApplicationDataEntry_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$args->key = $key;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNoteApplicationDataEntry', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNoteApplicationDataEntry', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNoteApplicationDataEntry()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNoteApplicationDataEntry_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNoteApplicationDataEntry_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNoteApplicationDataEntry failed: unknown result");
}
public function setNoteApplicationDataEntry($authenticationToken, $guid, $key, $value)
{
$this->send_setNoteApplicationDataEntry($authenticationToken, $guid, $key, $value);
return $this->recv_setNoteApplicationDataEntry();
}
public function send_setNoteApplicationDataEntry($authenticationToken, $guid, $key, $value)
{
$args = new \EDAM\NoteStore\NoteStore_setNoteApplicationDataEntry_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$args->key = $key;
$args->value = $value;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'setNoteApplicationDataEntry', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('setNoteApplicationDataEntry', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_setNoteApplicationDataEntry()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_setNoteApplicationDataEntry_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_setNoteApplicationDataEntry_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("setNoteApplicationDataEntry failed: unknown result");
}
public function unsetNoteApplicationDataEntry($authenticationToken, $guid, $key)
{
$this->send_unsetNoteApplicationDataEntry($authenticationToken, $guid, $key);
return $this->recv_unsetNoteApplicationDataEntry();
}
public function send_unsetNoteApplicationDataEntry($authenticationToken, $guid, $key)
{
$args = new \EDAM\NoteStore\NoteStore_unsetNoteApplicationDataEntry_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$args->key = $key;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'unsetNoteApplicationDataEntry', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('unsetNoteApplicationDataEntry', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_unsetNoteApplicationDataEntry()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_unsetNoteApplicationDataEntry_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_unsetNoteApplicationDataEntry_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("unsetNoteApplicationDataEntry failed: unknown result");
}
public function getNoteContent($authenticationToken, $guid)
{
$this->send_getNoteContent($authenticationToken, $guid);
return $this->recv_getNoteContent();
}
public function send_getNoteContent($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getNoteContent_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNoteContent', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNoteContent', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNoteContent()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNoteContent_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNoteContent_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNoteContent failed: unknown result");
}
public function getNoteSearchText($authenticationToken, $guid, $noteOnly, $tokenizeForIndexing)
{
$this->send_getNoteSearchText($authenticationToken, $guid, $noteOnly, $tokenizeForIndexing);
return $this->recv_getNoteSearchText();
}
public function send_getNoteSearchText($authenticationToken, $guid, $noteOnly, $tokenizeForIndexing)
{
$args = new \EDAM\NoteStore\NoteStore_getNoteSearchText_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$args->noteOnly = $noteOnly;
$args->tokenizeForIndexing = $tokenizeForIndexing;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNoteSearchText', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNoteSearchText', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNoteSearchText()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNoteSearchText_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNoteSearchText_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNoteSearchText failed: unknown result");
}
public function getResourceSearchText($authenticationToken, $guid)
{
$this->send_getResourceSearchText($authenticationToken, $guid);
return $this->recv_getResourceSearchText();
}
public function send_getResourceSearchText($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getResourceSearchText_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getResourceSearchText', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getResourceSearchText', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getResourceSearchText()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getResourceSearchText_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getResourceSearchText_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getResourceSearchText failed: unknown result");
}
public function getNoteTagNames($authenticationToken, $guid)
{
$this->send_getNoteTagNames($authenticationToken, $guid);
return $this->recv_getNoteTagNames();
}
public function send_getNoteTagNames($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_getNoteTagNames_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'getNoteTagNames', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('getNoteTagNames', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_getNoteTagNames()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_getNoteTagNames_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_getNoteTagNames_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("getNoteTagNames failed: unknown result");
}
public function createNote($authenticationToken, \EDAM\Types\Note $note)
{
$this->send_createNote($authenticationToken, $note);
return $this->recv_createNote();
}
public function send_createNote($authenticationToken, \EDAM\Types\Note $note)
{
$args = new \EDAM\NoteStore\NoteStore_createNote_args();
$args->authenticationToken = $authenticationToken;
$args->note = $note;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'createNote', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('createNote', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_createNote()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_createNote_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_createNote_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("createNote failed: unknown result");
}
public function updateNote($authenticationToken, \EDAM\Types\Note $note)
{
$this->send_updateNote($authenticationToken, $note);
return $this->recv_updateNote();
}
public function send_updateNote($authenticationToken, \EDAM\Types\Note $note)
{
$args = new \EDAM\NoteStore\NoteStore_updateNote_args();
$args->authenticationToken = $authenticationToken;
$args->note = $note;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'updateNote', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('updateNote', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_updateNote()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_updateNote_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_updateNote_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("updateNote failed: unknown result");
}
public function deleteNote($authenticationToken, $guid)
{
$this->send_deleteNote($authenticationToken, $guid);
return $this->recv_deleteNote();
}
public function send_deleteNote($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_deleteNote_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'deleteNote', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('deleteNote', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_deleteNote()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_deleteNote_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_deleteNote_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("deleteNote failed: unknown result");
}
public function expungeNote($authenticationToken, $guid)
{
$this->send_expungeNote($authenticationToken, $guid);
return $this->recv_expungeNote();
}
public function send_expungeNote($authenticationToken, $guid)
{
$args = new \EDAM\NoteStore\NoteStore_expungeNote_args();
$args->authenticationToken = $authenticationToken;
$args->guid = $guid;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeNote', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeNote', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeNote()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeNote_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeNote_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("expungeNote failed: unknown result");
}
public function expungeNotes($authenticationToken, $noteGuids)
{
$this->send_expungeNotes($authenticationToken, $noteGuids);
return $this->recv_expungeNotes();
}
public function send_expungeNotes($authenticationToken, $noteGuids)
{
$args = new \EDAM\NoteStore\NoteStore_expungeNotes_args();
$args->authenticationToken = $authenticationToken;
$args->noteGuids = $noteGuids;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeNotes', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeNotes', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeNotes()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeNotes_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeNotes_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($result->systemException !== null) {
throw $result->systemException;
}
if ($result->notFoundException !== null) {
throw $result->notFoundException;
}
throw new \Exception("expungeNotes failed: unknown result");
}
public function expungeInactiveNotes($authenticationToken)
{
$this->send_expungeInactiveNotes($authenticationToken);
return $this->recv_expungeInactiveNotes();
}
public function send_expungeInactiveNotes($authenticationToken)
{
$args = new \EDAM\NoteStore\NoteStore_expungeInactiveNotes_args();
$args->authenticationToken = $authenticationToken;
$bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
if ($bin_accel)
{
thrift_protocol_write_binary($this->output_, 'expungeInactiveNotes', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
}
else
{
$this->output_->writeMessageBegin('expungeInactiveNotes', TMessageType::CALL, $this->seqid_);
$args->write($this->output_);
$this->output_->writeMessageEnd();
$this->output_->getTransport()->flush();
}
}
public function recv_expungeInactiveNotes()
{
$bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\EDAM\NoteStore\NoteStore_expungeInactiveNotes_result', $this->input_->isStrictRead());
else
{
$rseqid = 0;
$fname = null;
$mtype = 0;
$this->input_->readMessageBegin($fname, $mtype, $rseqid);
if ($mtype == TMessageType::EXCEPTION) {
$x = new TApplicationException();
$x->read($this->input_);
$this->input_->readMessageEnd();
throw $x;
}
$result = new \EDAM\NoteStore\NoteStore_expungeInactiveNotes_result();
$result->read($this->input_);
$this->input_->readMessageEnd();
}
if ($result->success !== null) {
return $result->success;
}
if ($result->userException !== null) {
throw $result->userException;
}
if ($
gitextract_y1n92rby/
├── .gitignore
├── .travis.yml
├── APACHE-LICENSE-2.0.txt
├── LICENSE
├── NOTICE
├── README.md
├── composer.json
├── documentation/
│ ├── ApiIndex.md
│ ├── Evernote-Client.md
│ ├── Getting_Started.md
│ └── Migration.md
├── phpunit.xml.dist
├── sample/
│ ├── client/
│ │ ├── add_resource.php
│ │ ├── create_note.php
│ │ ├── delete_note.php
│ │ ├── find_notes.php
│ │ ├── list_notebooks.php
│ │ ├── move_note.php
│ │ ├── reminders.php
│ │ ├── replace_note.php
│ │ └── share_note.php
│ └── oauth/
│ └── index.php
├── src/
│ ├── EDAM/
│ │ ├── Error/
│ │ │ └── Types.php
│ │ ├── Limits/
│ │ │ └── Types.php
│ │ ├── NoteStore/
│ │ │ ├── NoteStore.php
│ │ │ └── Types.php
│ │ ├── Types/
│ │ │ └── Types.php
│ │ └── UserStore/
│ │ ├── Types.php
│ │ └── UserStore.php
│ ├── Evernote/
│ │ ├── AdvancedClient.php
│ │ ├── Auth/
│ │ │ └── OauthHandler.php
│ │ ├── Client.php
│ │ ├── Enml/
│ │ │ ├── CSSInliner/
│ │ │ │ ├── CssInlinerInterface.php
│ │ │ │ └── CssToInlineStyles.php
│ │ │ ├── Converter/
│ │ │ │ ├── EnmlConverterInterface.php
│ │ │ │ ├── EnmlToHtmlConverter.php
│ │ │ │ ├── HtmlConverterInterface.php
│ │ │ │ ├── HtmlToEnmlConverter.php
│ │ │ │ ├── PlainTextToEnmlConverter.php
│ │ │ │ ├── enml2html.xslt
│ │ │ │ └── html2enml.xslt
│ │ │ └── HtmlCleaner/
│ │ │ ├── HtmlCleanerInterface.php
│ │ │ └── HtmlPurifier.php
│ │ ├── Exception/
│ │ │ ├── AuthExpiredException.php
│ │ │ ├── AuthorizationDeniedException.php
│ │ │ ├── BadDataFormatException.php
│ │ │ ├── DataConflictException.php
│ │ │ ├── DataRequiredException.php
│ │ │ ├── EnmlValidationException.php
│ │ │ ├── ExceptionFactory.php
│ │ │ ├── InternalErrorException.php
│ │ │ ├── InvalidAuthException.php
│ │ │ ├── LengthTooLongException.php
│ │ │ ├── LengthTooShortException.php
│ │ │ ├── LimitReachedException.php
│ │ │ ├── NotFoundNoteException.php
│ │ │ ├── NotFoundNotebookException.php
│ │ │ ├── NotFoundSharedNotebookException.php
│ │ │ ├── PermissionDeniedException.php
│ │ │ ├── QuotaReachedException.php
│ │ │ ├── RateLimitReachedException.php
│ │ │ ├── ShardUnavailableException.php
│ │ │ ├── TakenDownException.php
│ │ │ ├── TooFewException.php
│ │ │ ├── TooManyException.php
│ │ │ ├── UnknownException.php
│ │ │ └── UnsupportedOperationException.php
│ │ ├── Factory/
│ │ │ └── ThriftClientFactory.php
│ │ ├── File/
│ │ │ ├── File.php
│ │ │ └── FileInterface.php
│ │ ├── Model/
│ │ │ ├── EnmlNoteContent.php
│ │ │ ├── HtmlNoteContent.php
│ │ │ ├── Note.php
│ │ │ ├── NoteContent.php
│ │ │ ├── NoteContentInterface.php
│ │ │ ├── Notebook.php
│ │ │ ├── PlainTextNoteContent.php
│ │ │ ├── Resource.php
│ │ │ ├── Search.php
│ │ │ └── SearchResult.php
│ │ └── Store/
│ │ └── Store.php
│ ├── Thrift/
│ │ ├── Base/
│ │ │ └── TBase.php
│ │ ├── ClassLoader/
│ │ │ └── ThriftClassLoader.php
│ │ ├── Exception/
│ │ │ ├── TApplicationException.php
│ │ │ ├── TException.php
│ │ │ ├── TProtocolException.php
│ │ │ └── TTransportException.php
│ │ ├── Factory/
│ │ │ ├── TBinaryProtocolFactory.php
│ │ │ ├── TCompactProtocolFactory.php
│ │ │ ├── TJSONProtocolFactory.php
│ │ │ ├── TProtocolFactory.php
│ │ │ ├── TStringFuncFactory.php
│ │ │ └── TTransportFactory.php
│ │ ├── Protocol/
│ │ │ ├── JSON/
│ │ │ │ ├── BaseContext.php
│ │ │ │ ├── ListContext.php
│ │ │ │ ├── LookaheadReader.php
│ │ │ │ └── PairContext.php
│ │ │ ├── TBinaryProtocol.php
│ │ │ ├── TBinaryProtocolAccelerated.php
│ │ │ ├── TCompactProtocol.php
│ │ │ ├── TJSONProtocol.php
│ │ │ └── TProtocol.php
│ │ ├── Serializer/
│ │ │ └── TBinarySerializer.php
│ │ ├── Server/
│ │ │ ├── TForkingServer.php
│ │ │ ├── TServer.php
│ │ │ ├── TServerSocket.php
│ │ │ ├── TServerTransport.php
│ │ │ └── TSimpleServer.php
│ │ ├── StringFunc/
│ │ │ ├── Core.php
│ │ │ ├── Mbstring.php
│ │ │ └── TStringFunc.php
│ │ ├── Transport/
│ │ │ ├── TBufferedTransport.php
│ │ │ ├── TFramedTransport.php
│ │ │ ├── THttpClient.php
│ │ │ ├── TMemoryBuffer.php
│ │ │ ├── TNullTransport.php
│ │ │ ├── TPhpStream.php
│ │ │ ├── TSocket.php
│ │ │ ├── TSocketPool.php
│ │ │ └── TTransport.php
│ │ └── Type/
│ │ ├── TConstant.php
│ │ ├── TMessageType.php
│ │ └── TType.php
│ └── autoload.php
└── tests/
├── Evernote/
│ └── Tests/
│ ├── ClientTest.php
│ └── Factory/
│ └── ThriftClientFactoryMock.php
├── bootstrap.php
└── fixtures/
├── note/
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_1d9fc47121ec77f859917916d8d773c44190b332
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_4308453c30010f6fddcfcbf282b8cd29e44af0a1
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_73b11960aeaa2ba866b406c2a93ed03f16db36d9
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_8d241b577460159e730d3b82088ce127583e2bec
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_9577897cad7bf1e37f2606087f3f693f47506bd3
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_a99bcc7351d22c34ea3a721ee456bd94de037d8c
│ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_c20b1b0b4a29805231df016645ecd8d10df5f482
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_3e6b2af694337e2953fccfd591ac7a23ac9cc541
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_530966c9d987f0a33eb4aae4795088981d09de2d
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_98109d118517ebeb7ada77c9db5ab71341f7590f
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_9cf7cf916a80d10d4e4eeb62398dd60ce497d607
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_d1901257919570d4c4cc1f2fc47fc1a97327fd92
│ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_dda1101e9822fbd8d1a1dbeb09df9045e2cd7a6a
│ ├── authenticateToSharedNotebook_REGULAR_USER_TOKEN_ab05ad6f7147221284dae09f8170c8e57ec73287
│ ├── getSharedNotebookByAuth_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── getSharedNotebookByAuth_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── getSharedNotebookByAuth_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listLinkedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listLinkedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── listLinkedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ ├── listNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
│ ├── listSharedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
│ ├── listSharedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
│ └── listSharedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
└── user/
├── authenticateToBusiness_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── authenticateToBusiness_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
├── getNoteStoreUrl_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── getNoteStoreUrl_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
├── getNoteStoreUrl_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
├── getUser_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1
├── getUser_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3
└── getUser_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1
SYMBOL INDEX (2264 symbols across 102 files)
FILE: src/EDAM/Error/Types.php
class EDAMErrorCode (line 20) | final class EDAMErrorCode {
class EDAMUserException (line 63) | class EDAMUserException extends TException {
method __construct (line 69) | public function __construct($vals=null) {
method getName (line 92) | public function getName() {
method read (line 96) | public function read($input)
method write (line 135) | public function write($output) {
class EDAMSystemException (line 155) | class EDAMSystemException extends TException {
method __construct (line 162) | public function __construct($vals=null) {
method getName (line 192) | public function getName() {
method read (line 196) | public function read($input)
method write (line 242) | public function write($output) {
class EDAMNotFoundException (line 267) | class EDAMNotFoundException extends TException {
method __construct (line 273) | public function __construct($vals=null) {
method getName (line 296) | public function getName() {
method read (line 300) | public function read($input)
method write (line 339) | public function write($output) {
FILE: src/EDAM/Limits/Types.php
class Constant (line 20) | final class Constant extends \Thrift\Type\TConstant {
method init_EDAM_ATTRIBUTE_LEN_MIN (line 162) | static protected function init_EDAM_ATTRIBUTE_LEN_MIN() {
method init_EDAM_ATTRIBUTE_LEN_MAX (line 166) | static protected function init_EDAM_ATTRIBUTE_LEN_MAX() {
method init_EDAM_ATTRIBUTE_REGEX (line 170) | static protected function init_EDAM_ATTRIBUTE_REGEX() {
method init_EDAM_ATTRIBUTE_LIST_MAX (line 174) | static protected function init_EDAM_ATTRIBUTE_LIST_MAX() {
method init_EDAM_ATTRIBUTE_MAP_MAX (line 178) | static protected function init_EDAM_ATTRIBUTE_MAP_MAX() {
method init_EDAM_GUID_LEN_MIN (line 182) | static protected function init_EDAM_GUID_LEN_MIN() {
method init_EDAM_GUID_LEN_MAX (line 186) | static protected function init_EDAM_GUID_LEN_MAX() {
method init_EDAM_GUID_REGEX (line 190) | static protected function init_EDAM_GUID_REGEX() {
method init_EDAM_EMAIL_LEN_MIN (line 194) | static protected function init_EDAM_EMAIL_LEN_MIN() {
method init_EDAM_EMAIL_LEN_MAX (line 198) | static protected function init_EDAM_EMAIL_LEN_MAX() {
method init_EDAM_EMAIL_LOCAL_REGEX (line 202) | static protected function init_EDAM_EMAIL_LOCAL_REGEX() {
method init_EDAM_EMAIL_DOMAIN_REGEX (line 206) | static protected function init_EDAM_EMAIL_DOMAIN_REGEX() {
method init_EDAM_EMAIL_REGEX (line 210) | static protected function init_EDAM_EMAIL_REGEX() {
method init_EDAM_VAT_REGEX (line 214) | static protected function init_EDAM_VAT_REGEX() {
method init_EDAM_TIMEZONE_LEN_MIN (line 218) | static protected function init_EDAM_TIMEZONE_LEN_MIN() {
method init_EDAM_TIMEZONE_LEN_MAX (line 222) | static protected function init_EDAM_TIMEZONE_LEN_MAX() {
method init_EDAM_TIMEZONE_REGEX (line 226) | static protected function init_EDAM_TIMEZONE_REGEX() {
method init_EDAM_MIME_LEN_MIN (line 230) | static protected function init_EDAM_MIME_LEN_MIN() {
method init_EDAM_MIME_LEN_MAX (line 234) | static protected function init_EDAM_MIME_LEN_MAX() {
method init_EDAM_MIME_REGEX (line 238) | static protected function init_EDAM_MIME_REGEX() {
method init_EDAM_MIME_TYPE_GIF (line 242) | static protected function init_EDAM_MIME_TYPE_GIF() {
method init_EDAM_MIME_TYPE_JPEG (line 246) | static protected function init_EDAM_MIME_TYPE_JPEG() {
method init_EDAM_MIME_TYPE_PNG (line 250) | static protected function init_EDAM_MIME_TYPE_PNG() {
method init_EDAM_MIME_TYPE_WAV (line 254) | static protected function init_EDAM_MIME_TYPE_WAV() {
method init_EDAM_MIME_TYPE_MP3 (line 258) | static protected function init_EDAM_MIME_TYPE_MP3() {
method init_EDAM_MIME_TYPE_AMR (line 262) | static protected function init_EDAM_MIME_TYPE_AMR() {
method init_EDAM_MIME_TYPE_AAC (line 266) | static protected function init_EDAM_MIME_TYPE_AAC() {
method init_EDAM_MIME_TYPE_M4A (line 270) | static protected function init_EDAM_MIME_TYPE_M4A() {
method init_EDAM_MIME_TYPE_MP4_VIDEO (line 274) | static protected function init_EDAM_MIME_TYPE_MP4_VIDEO() {
method init_EDAM_MIME_TYPE_INK (line 278) | static protected function init_EDAM_MIME_TYPE_INK() {
method init_EDAM_MIME_TYPE_PDF (line 282) | static protected function init_EDAM_MIME_TYPE_PDF() {
method init_EDAM_MIME_TYPE_DEFAULT (line 286) | static protected function init_EDAM_MIME_TYPE_DEFAULT() {
method init_EDAM_MIME_TYPES (line 290) | static protected function init_EDAM_MIME_TYPES() {
method init_EDAM_INDEXABLE_RESOURCE_MIME_TYPES (line 306) | static protected function init_EDAM_INDEXABLE_RESOURCE_MIME_TYPES() {
method init_EDAM_SEARCH_QUERY_LEN_MIN (line 326) | static protected function init_EDAM_SEARCH_QUERY_LEN_MIN() {
method init_EDAM_SEARCH_QUERY_LEN_MAX (line 330) | static protected function init_EDAM_SEARCH_QUERY_LEN_MAX() {
method init_EDAM_SEARCH_QUERY_REGEX (line 334) | static protected function init_EDAM_SEARCH_QUERY_REGEX() {
method init_EDAM_HASH_LEN (line 338) | static protected function init_EDAM_HASH_LEN() {
method init_EDAM_USER_USERNAME_LEN_MIN (line 342) | static protected function init_EDAM_USER_USERNAME_LEN_MIN() {
method init_EDAM_USER_USERNAME_LEN_MAX (line 346) | static protected function init_EDAM_USER_USERNAME_LEN_MAX() {
method init_EDAM_USER_USERNAME_REGEX (line 350) | static protected function init_EDAM_USER_USERNAME_REGEX() {
method init_EDAM_USER_NAME_LEN_MIN (line 354) | static protected function init_EDAM_USER_NAME_LEN_MIN() {
method init_EDAM_USER_NAME_LEN_MAX (line 358) | static protected function init_EDAM_USER_NAME_LEN_MAX() {
method init_EDAM_USER_NAME_REGEX (line 362) | static protected function init_EDAM_USER_NAME_REGEX() {
method init_EDAM_TAG_NAME_LEN_MIN (line 366) | static protected function init_EDAM_TAG_NAME_LEN_MIN() {
method init_EDAM_TAG_NAME_LEN_MAX (line 370) | static protected function init_EDAM_TAG_NAME_LEN_MAX() {
method init_EDAM_TAG_NAME_REGEX (line 374) | static protected function init_EDAM_TAG_NAME_REGEX() {
method init_EDAM_NOTE_TITLE_LEN_MIN (line 378) | static protected function init_EDAM_NOTE_TITLE_LEN_MIN() {
method init_EDAM_NOTE_TITLE_LEN_MAX (line 382) | static protected function init_EDAM_NOTE_TITLE_LEN_MAX() {
method init_EDAM_NOTE_TITLE_REGEX (line 386) | static protected function init_EDAM_NOTE_TITLE_REGEX() {
method init_EDAM_NOTE_CONTENT_LEN_MIN (line 390) | static protected function init_EDAM_NOTE_CONTENT_LEN_MIN() {
method init_EDAM_NOTE_CONTENT_LEN_MAX (line 394) | static protected function init_EDAM_NOTE_CONTENT_LEN_MAX() {
method init_EDAM_APPLICATIONDATA_NAME_LEN_MIN (line 398) | static protected function init_EDAM_APPLICATIONDATA_NAME_LEN_MIN() {
method init_EDAM_APPLICATIONDATA_NAME_LEN_MAX (line 402) | static protected function init_EDAM_APPLICATIONDATA_NAME_LEN_MAX() {
method init_EDAM_APPLICATIONDATA_VALUE_LEN_MIN (line 406) | static protected function init_EDAM_APPLICATIONDATA_VALUE_LEN_MIN() {
method init_EDAM_APPLICATIONDATA_VALUE_LEN_MAX (line 410) | static protected function init_EDAM_APPLICATIONDATA_VALUE_LEN_MAX() {
method init_EDAM_APPLICATIONDATA_ENTRY_LEN_MAX (line 414) | static protected function init_EDAM_APPLICATIONDATA_ENTRY_LEN_MAX() {
method init_EDAM_APPLICATIONDATA_NAME_REGEX (line 418) | static protected function init_EDAM_APPLICATIONDATA_NAME_REGEX() {
method init_EDAM_APPLICATIONDATA_VALUE_REGEX (line 422) | static protected function init_EDAM_APPLICATIONDATA_VALUE_REGEX() {
method init_EDAM_NOTEBOOK_NAME_LEN_MIN (line 426) | static protected function init_EDAM_NOTEBOOK_NAME_LEN_MIN() {
method init_EDAM_NOTEBOOK_NAME_LEN_MAX (line 430) | static protected function init_EDAM_NOTEBOOK_NAME_LEN_MAX() {
method init_EDAM_NOTEBOOK_NAME_REGEX (line 434) | static protected function init_EDAM_NOTEBOOK_NAME_REGEX() {
method init_EDAM_NOTEBOOK_STACK_LEN_MIN (line 438) | static protected function init_EDAM_NOTEBOOK_STACK_LEN_MIN() {
method init_EDAM_NOTEBOOK_STACK_LEN_MAX (line 442) | static protected function init_EDAM_NOTEBOOK_STACK_LEN_MAX() {
method init_EDAM_NOTEBOOK_STACK_REGEX (line 446) | static protected function init_EDAM_NOTEBOOK_STACK_REGEX() {
method init_EDAM_PUBLISHING_URI_LEN_MIN (line 450) | static protected function init_EDAM_PUBLISHING_URI_LEN_MIN() {
method init_EDAM_PUBLISHING_URI_LEN_MAX (line 454) | static protected function init_EDAM_PUBLISHING_URI_LEN_MAX() {
method init_EDAM_PUBLISHING_URI_REGEX (line 458) | static protected function init_EDAM_PUBLISHING_URI_REGEX() {
method init_EDAM_PUBLISHING_URI_PROHIBITED (line 462) | static protected function init_EDAM_PUBLISHING_URI_PROHIBITED() {
method init_EDAM_PUBLISHING_DESCRIPTION_LEN_MIN (line 468) | static protected function init_EDAM_PUBLISHING_DESCRIPTION_LEN_MIN() {
method init_EDAM_PUBLISHING_DESCRIPTION_LEN_MAX (line 472) | static protected function init_EDAM_PUBLISHING_DESCRIPTION_LEN_MAX() {
method init_EDAM_PUBLISHING_DESCRIPTION_REGEX (line 476) | static protected function init_EDAM_PUBLISHING_DESCRIPTION_REGEX() {
method init_EDAM_SAVED_SEARCH_NAME_LEN_MIN (line 480) | static protected function init_EDAM_SAVED_SEARCH_NAME_LEN_MIN() {
method init_EDAM_SAVED_SEARCH_NAME_LEN_MAX (line 484) | static protected function init_EDAM_SAVED_SEARCH_NAME_LEN_MAX() {
method init_EDAM_SAVED_SEARCH_NAME_REGEX (line 488) | static protected function init_EDAM_SAVED_SEARCH_NAME_REGEX() {
method init_EDAM_USER_PASSWORD_LEN_MIN (line 492) | static protected function init_EDAM_USER_PASSWORD_LEN_MIN() {
method init_EDAM_USER_PASSWORD_LEN_MAX (line 496) | static protected function init_EDAM_USER_PASSWORD_LEN_MAX() {
method init_EDAM_USER_PASSWORD_REGEX (line 500) | static protected function init_EDAM_USER_PASSWORD_REGEX() {
method init_EDAM_BUSINESS_URI_LEN_MAX (line 504) | static protected function init_EDAM_BUSINESS_URI_LEN_MAX() {
method init_EDAM_NOTE_TAGS_MAX (line 508) | static protected function init_EDAM_NOTE_TAGS_MAX() {
method init_EDAM_NOTE_RESOURCES_MAX (line 512) | static protected function init_EDAM_NOTE_RESOURCES_MAX() {
method init_EDAM_USER_TAGS_MAX (line 516) | static protected function init_EDAM_USER_TAGS_MAX() {
method init_EDAM_BUSINESS_TAGS_MAX (line 520) | static protected function init_EDAM_BUSINESS_TAGS_MAX() {
method init_EDAM_USER_SAVED_SEARCHES_MAX (line 524) | static protected function init_EDAM_USER_SAVED_SEARCHES_MAX() {
method init_EDAM_USER_NOTES_MAX (line 528) | static protected function init_EDAM_USER_NOTES_MAX() {
method init_EDAM_BUSINESS_NOTES_MAX (line 532) | static protected function init_EDAM_BUSINESS_NOTES_MAX() {
method init_EDAM_USER_NOTEBOOKS_MAX (line 536) | static protected function init_EDAM_USER_NOTEBOOKS_MAX() {
method init_EDAM_BUSINESS_NOTEBOOKS_MAX (line 540) | static protected function init_EDAM_BUSINESS_NOTEBOOKS_MAX() {
method init_EDAM_USER_RECENT_MAILED_ADDRESSES_MAX (line 544) | static protected function init_EDAM_USER_RECENT_MAILED_ADDRESSES_MAX() {
method init_EDAM_USER_MAIL_LIMIT_DAILY_FREE (line 548) | static protected function init_EDAM_USER_MAIL_LIMIT_DAILY_FREE() {
method init_EDAM_USER_MAIL_LIMIT_DAILY_PREMIUM (line 552) | static protected function init_EDAM_USER_MAIL_LIMIT_DAILY_PREMIUM() {
method init_EDAM_USER_UPLOAD_LIMIT_FREE (line 556) | static protected function init_EDAM_USER_UPLOAD_LIMIT_FREE() {
method init_EDAM_USER_UPLOAD_LIMIT_PREMIUM (line 560) | static protected function init_EDAM_USER_UPLOAD_LIMIT_PREMIUM() {
method init_EDAM_USER_UPLOAD_LIMIT_BUSINESS (line 564) | static protected function init_EDAM_USER_UPLOAD_LIMIT_BUSINESS() {
method init_EDAM_NOTE_SIZE_MAX_FREE (line 568) | static protected function init_EDAM_NOTE_SIZE_MAX_FREE() {
method init_EDAM_NOTE_SIZE_MAX_PREMIUM (line 572) | static protected function init_EDAM_NOTE_SIZE_MAX_PREMIUM() {
method init_EDAM_RESOURCE_SIZE_MAX_FREE (line 576) | static protected function init_EDAM_RESOURCE_SIZE_MAX_FREE() {
method init_EDAM_RESOURCE_SIZE_MAX_PREMIUM (line 580) | static protected function init_EDAM_RESOURCE_SIZE_MAX_PREMIUM() {
method init_EDAM_USER_LINKED_NOTEBOOK_MAX (line 584) | static protected function init_EDAM_USER_LINKED_NOTEBOOK_MAX() {
method init_EDAM_USER_LINKED_NOTEBOOK_MAX_PREMIUM (line 588) | static protected function init_EDAM_USER_LINKED_NOTEBOOK_MAX_PREMIUM() {
method init_EDAM_NOTEBOOK_SHARED_NOTEBOOK_MAX (line 592) | static protected function init_EDAM_NOTEBOOK_SHARED_NOTEBOOK_MAX() {
method init_EDAM_NOTE_CONTENT_CLASS_LEN_MIN (line 596) | static protected function init_EDAM_NOTE_CONTENT_CLASS_LEN_MIN() {
method init_EDAM_NOTE_CONTENT_CLASS_LEN_MAX (line 600) | static protected function init_EDAM_NOTE_CONTENT_CLASS_LEN_MAX() {
method init_EDAM_NOTE_CONTENT_CLASS_REGEX (line 604) | static protected function init_EDAM_NOTE_CONTENT_CLASS_REGEX() {
method init_EDAM_HELLO_APP_CONTENT_CLASS_PREFIX (line 608) | static protected function init_EDAM_HELLO_APP_CONTENT_CLASS_PREFIX() {
method init_EDAM_FOOD_APP_CONTENT_CLASS_PREFIX (line 612) | static protected function init_EDAM_FOOD_APP_CONTENT_CLASS_PREFIX() {
method init_EDAM_CONTENT_CLASS_HELLO_ENCOUNTER (line 616) | static protected function init_EDAM_CONTENT_CLASS_HELLO_ENCOUNTER() {
method init_EDAM_CONTENT_CLASS_HELLO_PROFILE (line 620) | static protected function init_EDAM_CONTENT_CLASS_HELLO_PROFILE() {
method init_EDAM_CONTENT_CLASS_FOOD_MEAL (line 624) | static protected function init_EDAM_CONTENT_CLASS_FOOD_MEAL() {
method init_EDAM_CONTENT_CLASS_SKITCH_PREFIX (line 628) | static protected function init_EDAM_CONTENT_CLASS_SKITCH_PREFIX() {
method init_EDAM_CONTENT_CLASS_SKITCH (line 632) | static protected function init_EDAM_CONTENT_CLASS_SKITCH() {
method init_EDAM_CONTENT_CLASS_SKITCH_PDF (line 636) | static protected function init_EDAM_CONTENT_CLASS_SKITCH_PDF() {
method init_EDAM_CONTENT_CLASS_PENULTIMATE_PREFIX (line 640) | static protected function init_EDAM_CONTENT_CLASS_PENULTIMATE_PREFIX() {
method init_EDAM_CONTENT_CLASS_PENULTIMATE_NOTEBOOK (line 644) | static protected function init_EDAM_CONTENT_CLASS_PENULTIMATE_NOTEBOOK...
method init_EDAM_RELATED_PLAINTEXT_LEN_MIN (line 648) | static protected function init_EDAM_RELATED_PLAINTEXT_LEN_MIN() {
method init_EDAM_RELATED_PLAINTEXT_LEN_MAX (line 652) | static protected function init_EDAM_RELATED_PLAINTEXT_LEN_MAX() {
method init_EDAM_RELATED_MAX_NOTES (line 656) | static protected function init_EDAM_RELATED_MAX_NOTES() {
method init_EDAM_RELATED_MAX_NOTEBOOKS (line 660) | static protected function init_EDAM_RELATED_MAX_NOTEBOOKS() {
method init_EDAM_RELATED_MAX_TAGS (line 664) | static protected function init_EDAM_RELATED_MAX_TAGS() {
method init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MIN (line 668) | static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_...
method init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MAX (line 672) | static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_...
method init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_REGEX (line 676) | static protected function init_EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_REGE...
method init_EDAM_BUSINESS_PHONE_NUMBER_LEN_MAX (line 680) | static protected function init_EDAM_BUSINESS_PHONE_NUMBER_LEN_MAX() {
method init_EDAM_PREFERENCE_NAME_LEN_MIN (line 684) | static protected function init_EDAM_PREFERENCE_NAME_LEN_MIN() {
method init_EDAM_PREFERENCE_NAME_LEN_MAX (line 688) | static protected function init_EDAM_PREFERENCE_NAME_LEN_MAX() {
method init_EDAM_PREFERENCE_VALUE_LEN_MIN (line 692) | static protected function init_EDAM_PREFERENCE_VALUE_LEN_MIN() {
method init_EDAM_PREFERENCE_VALUE_LEN_MAX (line 696) | static protected function init_EDAM_PREFERENCE_VALUE_LEN_MAX() {
method init_EDAM_MAX_PREFERENCES (line 700) | static protected function init_EDAM_MAX_PREFERENCES() {
method init_EDAM_MAX_VALUES_PER_PREFERENCE (line 704) | static protected function init_EDAM_MAX_VALUES_PER_PREFERENCE() {
method init_EDAM_PREFERENCE_NAME_REGEX (line 708) | static protected function init_EDAM_PREFERENCE_NAME_REGEX() {
method init_EDAM_PREFERENCE_VALUE_REGEX (line 712) | static protected function init_EDAM_PREFERENCE_VALUE_REGEX() {
method init_EDAM_PREFERENCE_SHORTCUTS (line 716) | static protected function init_EDAM_PREFERENCE_SHORTCUTS() {
method init_EDAM_PREFERENCE_SHORTCUTS_MAX_VALUES (line 720) | static protected function init_EDAM_PREFERENCE_SHORTCUTS_MAX_VALUES() {
method init_EDAM_DEVICE_ID_LEN_MAX (line 724) | static protected function init_EDAM_DEVICE_ID_LEN_MAX() {
method init_EDAM_DEVICE_ID_REGEX (line 728) | static protected function init_EDAM_DEVICE_ID_REGEX() {
method init_EDAM_DEVICE_DESCRIPTION_LEN_MAX (line 732) | static protected function init_EDAM_DEVICE_DESCRIPTION_LEN_MAX() {
method init_EDAM_DEVICE_DESCRIPTION_REGEX (line 736) | static protected function init_EDAM_DEVICE_DESCRIPTION_REGEX() {
method init_EDAM_SEARCH_SUGGESTIONS_MAX (line 740) | static protected function init_EDAM_SEARCH_SUGGESTIONS_MAX() {
method init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MAX (line 744) | static protected function init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MAX() {
method init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MIN (line 748) | static protected function init_EDAM_SEARCH_SUGGESTIONS_PREFIX_LEN_MIN() {
FILE: src/EDAM/NoteStore/NoteStore.php
type NoteStoreIf (line 18) | interface NoteStoreIf {
method getSyncState (line 19) | public function getSyncState($authenticationToken);
method getSyncStateWithMetrics (line 20) | public function getSyncStateWithMetrics($authenticationToken, \EDAM\No...
method getSyncChunk (line 21) | public function getSyncChunk($authenticationToken, $afterUSN, $maxEntr...
method getFilteredSyncChunk (line 22) | public function getFilteredSyncChunk($authenticationToken, $afterUSN, ...
method getLinkedNotebookSyncState (line 23) | public function getLinkedNotebookSyncState($authenticationToken, \EDAM...
method getLinkedNotebookSyncChunk (line 24) | public function getLinkedNotebookSyncChunk($authenticationToken, \EDAM...
method listNotebooks (line 25) | public function listNotebooks($authenticationToken);
method getNotebook (line 26) | public function getNotebook($authenticationToken, $guid);
method getDefaultNotebook (line 27) | public function getDefaultNotebook($authenticationToken);
method createNotebook (line 28) | public function createNotebook($authenticationToken, \EDAM\Types\Noteb...
method updateNotebook (line 29) | public function updateNotebook($authenticationToken, \EDAM\Types\Noteb...
method expungeNotebook (line 30) | public function expungeNotebook($authenticationToken, $guid);
method listTags (line 31) | public function listTags($authenticationToken);
method listTagsByNotebook (line 32) | public function listTagsByNotebook($authenticationToken, $notebookGuid);
method getTag (line 33) | public function getTag($authenticationToken, $guid);
method createTag (line 34) | public function createTag($authenticationToken, \EDAM\Types\Tag $tag);
method updateTag (line 35) | public function updateTag($authenticationToken, \EDAM\Types\Tag $tag);
method untagAll (line 36) | public function untagAll($authenticationToken, $guid);
method expungeTag (line 37) | public function expungeTag($authenticationToken, $guid);
method listSearches (line 38) | public function listSearches($authenticationToken);
method getSearch (line 39) | public function getSearch($authenticationToken, $guid);
method createSearch (line 40) | public function createSearch($authenticationToken, \EDAM\Types\SavedSe...
method updateSearch (line 41) | public function updateSearch($authenticationToken, \EDAM\Types\SavedSe...
method expungeSearch (line 42) | public function expungeSearch($authenticationToken, $guid);
method findNotes (line 43) | public function findNotes($authenticationToken, \EDAM\NoteStore\NoteFi...
method findNoteOffset (line 44) | public function findNoteOffset($authenticationToken, \EDAM\NoteStore\N...
method findNotesMetadata (line 45) | public function findNotesMetadata($authenticationToken, \EDAM\NoteStor...
method findNoteCounts (line 46) | public function findNoteCounts($authenticationToken, \EDAM\NoteStore\N...
method getNote (line 47) | public function getNote($authenticationToken, $guid, $withContent, $wi...
method getNoteApplicationData (line 48) | public function getNoteApplicationData($authenticationToken, $guid);
method getNoteApplicationDataEntry (line 49) | public function getNoteApplicationDataEntry($authenticationToken, $gui...
method setNoteApplicationDataEntry (line 50) | public function setNoteApplicationDataEntry($authenticationToken, $gui...
method unsetNoteApplicationDataEntry (line 51) | public function unsetNoteApplicationDataEntry($authenticationToken, $g...
method getNoteContent (line 52) | public function getNoteContent($authenticationToken, $guid);
method getNoteSearchText (line 53) | public function getNoteSearchText($authenticationToken, $guid, $noteOn...
method getResourceSearchText (line 54) | public function getResourceSearchText($authenticationToken, $guid);
method getNoteTagNames (line 55) | public function getNoteTagNames($authenticationToken, $guid);
method createNote (line 56) | public function createNote($authenticationToken, \EDAM\Types\Note $note);
method updateNote (line 57) | public function updateNote($authenticationToken, \EDAM\Types\Note $note);
method deleteNote (line 58) | public function deleteNote($authenticationToken, $guid);
method expungeNote (line 59) | public function expungeNote($authenticationToken, $guid);
method expungeNotes (line 60) | public function expungeNotes($authenticationToken, $noteGuids);
method expungeInactiveNotes (line 61) | public function expungeInactiveNotes($authenticationToken);
method copyNote (line 62) | public function copyNote($authenticationToken, $noteGuid, $toNotebookG...
method listNoteVersions (line 63) | public function listNoteVersions($authenticationToken, $noteGuid);
method getNoteVersion (line 64) | public function getNoteVersion($authenticationToken, $noteGuid, $updat...
method getResource (line 65) | public function getResource($authenticationToken, $guid, $withData, $w...
method getResourceApplicationData (line 66) | public function getResourceApplicationData($authenticationToken, $guid);
method getResourceApplicationDataEntry (line 67) | public function getResourceApplicationDataEntry($authenticationToken, ...
method setResourceApplicationDataEntry (line 68) | public function setResourceApplicationDataEntry($authenticationToken, ...
method unsetResourceApplicationDataEntry (line 69) | public function unsetResourceApplicationDataEntry($authenticationToken...
method updateResource (line 70) | public function updateResource($authenticationToken, \EDAM\Types\Resou...
method getResourceData (line 71) | public function getResourceData($authenticationToken, $guid);
method getResourceByHash (line 72) | public function getResourceByHash($authenticationToken, $noteGuid, $co...
method getResourceRecognition (line 73) | public function getResourceRecognition($authenticationToken, $guid);
method getResourceAlternateData (line 74) | public function getResourceAlternateData($authenticationToken, $guid);
method getResourceAttributes (line 75) | public function getResourceAttributes($authenticationToken, $guid);
method getPublicNotebook (line 76) | public function getPublicNotebook($userId, $publicUri);
method createSharedNotebook (line 77) | public function createSharedNotebook($authenticationToken, \EDAM\Types...
method updateSharedNotebook (line 78) | public function updateSharedNotebook($authenticationToken, \EDAM\Types...
method setSharedNotebookRecipientSettings (line 79) | public function setSharedNotebookRecipientSettings($authenticationToke...
method sendMessageToSharedNotebookMembers (line 80) | public function sendMessageToSharedNotebookMembers($authenticationToke...
method listSharedNotebooks (line 81) | public function listSharedNotebooks($authenticationToken);
method expungeSharedNotebooks (line 82) | public function expungeSharedNotebooks($authenticationToken, $sharedNo...
method createLinkedNotebook (line 83) | public function createLinkedNotebook($authenticationToken, \EDAM\Types...
method updateLinkedNotebook (line 84) | public function updateLinkedNotebook($authenticationToken, \EDAM\Types...
method listLinkedNotebooks (line 85) | public function listLinkedNotebooks($authenticationToken);
method expungeLinkedNotebook (line 86) | public function expungeLinkedNotebook($authenticationToken, $guid);
method authenticateToSharedNotebook (line 87) | public function authenticateToSharedNotebook($shareKey, $authenticatio...
method getSharedNotebookByAuth (line 88) | public function getSharedNotebookByAuth($authenticationToken);
method emailNote (line 89) | public function emailNote($authenticationToken, \EDAM\NoteStore\NoteEm...
method shareNote (line 90) | public function shareNote($authenticationToken, $guid);
method stopSharingNote (line 91) | public function stopSharingNote($authenticationToken, $guid);
method authenticateToSharedNote (line 92) | public function authenticateToSharedNote($guid, $noteKey, $authenticat...
method findRelated (line 93) | public function findRelated($authenticationToken, \EDAM\NoteStore\Rela...
class NoteStoreClient (line 96) | class NoteStoreClient implements \EDAM\NoteStore\NoteStoreIf {
method __construct (line 102) | public function __construct($input, $output=null) {
method getSyncState (line 107) | public function getSyncState($authenticationToken)
method send_getSyncState (line 113) | public function send_getSyncState($authenticationToken)
method recv_getSyncState (line 131) | public function recv_getSyncState()
method getSyncStateWithMetrics (line 164) | public function getSyncStateWithMetrics($authenticationToken, \EDAM\No...
method send_getSyncStateWithMetrics (line 170) | public function send_getSyncStateWithMetrics($authenticationToken, \ED...
method recv_getSyncStateWithMetrics (line 189) | public function recv_getSyncStateWithMetrics()
method getSyncChunk (line 222) | public function getSyncChunk($authenticationToken, $afterUSN, $maxEntr...
method send_getSyncChunk (line 228) | public function send_getSyncChunk($authenticationToken, $afterUSN, $ma...
method recv_getSyncChunk (line 249) | public function recv_getSyncChunk()
method getFilteredSyncChunk (line 282) | public function getFilteredSyncChunk($authenticationToken, $afterUSN, ...
method send_getFilteredSyncChunk (line 288) | public function send_getFilteredSyncChunk($authenticationToken, $after...
method recv_getFilteredSyncChunk (line 309) | public function recv_getFilteredSyncChunk()
method getLinkedNotebookSyncState (line 342) | public function getLinkedNotebookSyncState($authenticationToken, \EDAM...
method send_getLinkedNotebookSyncState (line 348) | public function send_getLinkedNotebookSyncState($authenticationToken, ...
method recv_getLinkedNotebookSyncState (line 367) | public function recv_getLinkedNotebookSyncState()
method getLinkedNotebookSyncChunk (line 403) | public function getLinkedNotebookSyncChunk($authenticationToken, \EDAM...
method send_getLinkedNotebookSyncChunk (line 409) | public function send_getLinkedNotebookSyncChunk($authenticationToken, ...
method recv_getLinkedNotebookSyncChunk (line 431) | public function recv_getLinkedNotebookSyncChunk()
method listNotebooks (line 467) | public function listNotebooks($authenticationToken)
method send_listNotebooks (line 473) | public function send_listNotebooks($authenticationToken)
method recv_listNotebooks (line 491) | public function recv_listNotebooks()
method getNotebook (line 524) | public function getNotebook($authenticationToken, $guid)
method send_getNotebook (line 530) | public function send_getNotebook($authenticationToken, $guid)
method recv_getNotebook (line 549) | public function recv_getNotebook()
method getDefaultNotebook (line 585) | public function getDefaultNotebook($authenticationToken)
method send_getDefaultNotebook (line 591) | public function send_getDefaultNotebook($authenticationToken)
method recv_getDefaultNotebook (line 609) | public function recv_getDefaultNotebook()
method createNotebook (line 642) | public function createNotebook($authenticationToken, \EDAM\Types\Noteb...
method send_createNotebook (line 648) | public function send_createNotebook($authenticationToken, \EDAM\Types\...
method recv_createNotebook (line 667) | public function recv_createNotebook()
method updateNotebook (line 700) | public function updateNotebook($authenticationToken, \EDAM\Types\Noteb...
method send_updateNotebook (line 706) | public function send_updateNotebook($authenticationToken, \EDAM\Types\...
method recv_updateNotebook (line 725) | public function recv_updateNotebook()
method expungeNotebook (line 761) | public function expungeNotebook($authenticationToken, $guid)
method send_expungeNotebook (line 767) | public function send_expungeNotebook($authenticationToken, $guid)
method recv_expungeNotebook (line 786) | public function recv_expungeNotebook()
method listTags (line 822) | public function listTags($authenticationToken)
method send_listTags (line 828) | public function send_listTags($authenticationToken)
method recv_listTags (line 846) | public function recv_listTags()
method listTagsByNotebook (line 879) | public function listTagsByNotebook($authenticationToken, $notebookGuid)
method send_listTagsByNotebook (line 885) | public function send_listTagsByNotebook($authenticationToken, $noteboo...
method recv_listTagsByNotebook (line 904) | public function recv_listTagsByNotebook()
method getTag (line 940) | public function getTag($authenticationToken, $guid)
method send_getTag (line 946) | public function send_getTag($authenticationToken, $guid)
method recv_getTag (line 965) | public function recv_getTag()
method createTag (line 1001) | public function createTag($authenticationToken, \EDAM\Types\Tag $tag)
method send_createTag (line 1007) | public function send_createTag($authenticationToken, \EDAM\Types\Tag $...
method recv_createTag (line 1026) | public function recv_createTag()
method updateTag (line 1062) | public function updateTag($authenticationToken, \EDAM\Types\Tag $tag)
method send_updateTag (line 1068) | public function send_updateTag($authenticationToken, \EDAM\Types\Tag $...
method recv_updateTag (line 1087) | public function recv_updateTag()
method untagAll (line 1123) | public function untagAll($authenticationToken, $guid)
method send_untagAll (line 1129) | public function send_untagAll($authenticationToken, $guid)
method recv_untagAll (line 1148) | public function recv_untagAll()
method expungeTag (line 1181) | public function expungeTag($authenticationToken, $guid)
method send_expungeTag (line 1187) | public function send_expungeTag($authenticationToken, $guid)
method recv_expungeTag (line 1206) | public function recv_expungeTag()
method listSearches (line 1242) | public function listSearches($authenticationToken)
method send_listSearches (line 1248) | public function send_listSearches($authenticationToken)
method recv_listSearches (line 1266) | public function recv_listSearches()
method getSearch (line 1299) | public function getSearch($authenticationToken, $guid)
method send_getSearch (line 1305) | public function send_getSearch($authenticationToken, $guid)
method recv_getSearch (line 1324) | public function recv_getSearch()
method createSearch (line 1360) | public function createSearch($authenticationToken, \EDAM\Types\SavedSe...
method send_createSearch (line 1366) | public function send_createSearch($authenticationToken, \EDAM\Types\Sa...
method recv_createSearch (line 1385) | public function recv_createSearch()
method updateSearch (line 1418) | public function updateSearch($authenticationToken, \EDAM\Types\SavedSe...
method send_updateSearch (line 1424) | public function send_updateSearch($authenticationToken, \EDAM\Types\Sa...
method recv_updateSearch (line 1443) | public function recv_updateSearch()
method expungeSearch (line 1479) | public function expungeSearch($authenticationToken, $guid)
method send_expungeSearch (line 1485) | public function send_expungeSearch($authenticationToken, $guid)
method recv_expungeSearch (line 1504) | public function recv_expungeSearch()
method findNotes (line 1540) | public function findNotes($authenticationToken, \EDAM\NoteStore\NoteFi...
method send_findNotes (line 1546) | public function send_findNotes($authenticationToken, \EDAM\NoteStore\N...
method recv_findNotes (line 1567) | public function recv_findNotes()
method findNoteOffset (line 1603) | public function findNoteOffset($authenticationToken, \EDAM\NoteStore\N...
method send_findNoteOffset (line 1609) | public function send_findNoteOffset($authenticationToken, \EDAM\NoteSt...
method recv_findNoteOffset (line 1629) | public function recv_findNoteOffset()
method findNotesMetadata (line 1665) | public function findNotesMetadata($authenticationToken, \EDAM\NoteStor...
method send_findNotesMetadata (line 1671) | public function send_findNotesMetadata($authenticationToken, \EDAM\Not...
method recv_findNotesMetadata (line 1693) | public function recv_findNotesMetadata()
method findNoteCounts (line 1729) | public function findNoteCounts($authenticationToken, \EDAM\NoteStore\N...
method send_findNoteCounts (line 1735) | public function send_findNoteCounts($authenticationToken, \EDAM\NoteSt...
method recv_findNoteCounts (line 1755) | public function recv_findNoteCounts()
method getNote (line 1791) | public function getNote($authenticationToken, $guid, $withContent, $wi...
method send_getNote (line 1797) | public function send_getNote($authenticationToken, $guid, $withContent...
method recv_getNote (line 1820) | public function recv_getNote()
method getNoteApplicationData (line 1856) | public function getNoteApplicationData($authenticationToken, $guid)
method send_getNoteApplicationData (line 1862) | public function send_getNoteApplicationData($authenticationToken, $guid)
method recv_getNoteApplicationData (line 1881) | public function recv_getNoteApplicationData()
method getNoteApplicationDataEntry (line 1917) | public function getNoteApplicationDataEntry($authenticationToken, $gui...
method send_getNoteApplicationDataEntry (line 1923) | public function send_getNoteApplicationDataEntry($authenticationToken,...
method recv_getNoteApplicationDataEntry (line 1943) | public function recv_getNoteApplicationDataEntry()
method setNoteApplicationDataEntry (line 1979) | public function setNoteApplicationDataEntry($authenticationToken, $gui...
method send_setNoteApplicationDataEntry (line 1985) | public function send_setNoteApplicationDataEntry($authenticationToken,...
method recv_setNoteApplicationDataEntry (line 2006) | public function recv_setNoteApplicationDataEntry()
method unsetNoteApplicationDataEntry (line 2042) | public function unsetNoteApplicationDataEntry($authenticationToken, $g...
method send_unsetNoteApplicationDataEntry (line 2048) | public function send_unsetNoteApplicationDataEntry($authenticationToke...
method recv_unsetNoteApplicationDataEntry (line 2068) | public function recv_unsetNoteApplicationDataEntry()
method getNoteContent (line 2104) | public function getNoteContent($authenticationToken, $guid)
method send_getNoteContent (line 2110) | public function send_getNoteContent($authenticationToken, $guid)
method recv_getNoteContent (line 2129) | public function recv_getNoteContent()
method getNoteSearchText (line 2165) | public function getNoteSearchText($authenticationToken, $guid, $noteOn...
method send_getNoteSearchText (line 2171) | public function send_getNoteSearchText($authenticationToken, $guid, $n...
method recv_getNoteSearchText (line 2192) | public function recv_getNoteSearchText()
method getResourceSearchText (line 2228) | public function getResourceSearchText($authenticationToken, $guid)
method send_getResourceSearchText (line 2234) | public function send_getResourceSearchText($authenticationToken, $guid)
method recv_getResourceSearchText (line 2253) | public function recv_getResourceSearchText()
method getNoteTagNames (line 2289) | public function getNoteTagNames($authenticationToken, $guid)
method send_getNoteTagNames (line 2295) | public function send_getNoteTagNames($authenticationToken, $guid)
method recv_getNoteTagNames (line 2314) | public function recv_getNoteTagNames()
method createNote (line 2350) | public function createNote($authenticationToken, \EDAM\Types\Note $note)
method send_createNote (line 2356) | public function send_createNote($authenticationToken, \EDAM\Types\Note...
method recv_createNote (line 2375) | public function recv_createNote()
method updateNote (line 2411) | public function updateNote($authenticationToken, \EDAM\Types\Note $note)
method send_updateNote (line 2417) | public function send_updateNote($authenticationToken, \EDAM\Types\Note...
method recv_updateNote (line 2436) | public function recv_updateNote()
method deleteNote (line 2472) | public function deleteNote($authenticationToken, $guid)
method send_deleteNote (line 2478) | public function send_deleteNote($authenticationToken, $guid)
method recv_deleteNote (line 2497) | public function recv_deleteNote()
method expungeNote (line 2533) | public function expungeNote($authenticationToken, $guid)
method send_expungeNote (line 2539) | public function send_expungeNote($authenticationToken, $guid)
method recv_expungeNote (line 2558) | public function recv_expungeNote()
method expungeNotes (line 2594) | public function expungeNotes($authenticationToken, $noteGuids)
method send_expungeNotes (line 2600) | public function send_expungeNotes($authenticationToken, $noteGuids)
method recv_expungeNotes (line 2619) | public function recv_expungeNotes()
method expungeInactiveNotes (line 2655) | public function expungeInactiveNotes($authenticationToken)
method send_expungeInactiveNotes (line 2661) | public function send_expungeInactiveNotes($authenticationToken)
method recv_expungeInactiveNotes (line 2679) | public function recv_expungeInactiveNotes()
method copyNote (line 2712) | public function copyNote($authenticationToken, $noteGuid, $toNotebookG...
method send_copyNote (line 2718) | public function send_copyNote($authenticationToken, $noteGuid, $toNote...
method recv_copyNote (line 2738) | public function recv_copyNote()
method listNoteVersions (line 2774) | public function listNoteVersions($authenticationToken, $noteGuid)
method send_listNoteVersions (line 2780) | public function send_listNoteVersions($authenticationToken, $noteGuid)
method recv_listNoteVersions (line 2799) | public function recv_listNoteVersions()
method getNoteVersion (line 2835) | public function getNoteVersion($authenticationToken, $noteGuid, $updat...
method send_getNoteVersion (line 2841) | public function send_getNoteVersion($authenticationToken, $noteGuid, $...
method recv_getNoteVersion (line 2864) | public function recv_getNoteVersion()
method getResource (line 2900) | public function getResource($authenticationToken, $guid, $withData, $w...
method send_getResource (line 2906) | public function send_getResource($authenticationToken, $guid, $withDat...
method recv_getResource (line 2929) | public function recv_getResource()
method getResourceApplicationData (line 2965) | public function getResourceApplicationData($authenticationToken, $guid)
method send_getResourceApplicationData (line 2971) | public function send_getResourceApplicationData($authenticationToken, ...
method recv_getResourceApplicationData (line 2990) | public function recv_getResourceApplicationData()
method getResourceApplicationDataEntry (line 3026) | public function getResourceApplicationDataEntry($authenticationToken, ...
method send_getResourceApplicationDataEntry (line 3032) | public function send_getResourceApplicationDataEntry($authenticationTo...
method recv_getResourceApplicationDataEntry (line 3052) | public function recv_getResourceApplicationDataEntry()
method setResourceApplicationDataEntry (line 3088) | public function setResourceApplicationDataEntry($authenticationToken, ...
method send_setResourceApplicationDataEntry (line 3094) | public function send_setResourceApplicationDataEntry($authenticationTo...
method recv_setResourceApplicationDataEntry (line 3115) | public function recv_setResourceApplicationDataEntry()
method unsetResourceApplicationDataEntry (line 3151) | public function unsetResourceApplicationDataEntry($authenticationToken...
method send_unsetResourceApplicationDataEntry (line 3157) | public function send_unsetResourceApplicationDataEntry($authentication...
method recv_unsetResourceApplicationDataEntry (line 3177) | public function recv_unsetResourceApplicationDataEntry()
method updateResource (line 3213) | public function updateResource($authenticationToken, \EDAM\Types\Resou...
method send_updateResource (line 3219) | public function send_updateResource($authenticationToken, \EDAM\Types\...
method recv_updateResource (line 3238) | public function recv_updateResource()
method getResourceData (line 3274) | public function getResourceData($authenticationToken, $guid)
method send_getResourceData (line 3280) | public function send_getResourceData($authenticationToken, $guid)
method recv_getResourceData (line 3299) | public function recv_getResourceData()
method getResourceByHash (line 3335) | public function getResourceByHash($authenticationToken, $noteGuid, $co...
method send_getResourceByHash (line 3341) | public function send_getResourceByHash($authenticationToken, $noteGuid...
method recv_getResourceByHash (line 3364) | public function recv_getResourceByHash()
method getResourceRecognition (line 3400) | public function getResourceRecognition($authenticationToken, $guid)
method send_getResourceRecognition (line 3406) | public function send_getResourceRecognition($authenticationToken, $guid)
method recv_getResourceRecognition (line 3425) | public function recv_getResourceRecognition()
method getResourceAlternateData (line 3461) | public function getResourceAlternateData($authenticationToken, $guid)
method send_getResourceAlternateData (line 3467) | public function send_getResourceAlternateData($authenticationToken, $g...
method recv_getResourceAlternateData (line 3486) | public function recv_getResourceAlternateData()
method getResourceAttributes (line 3522) | public function getResourceAttributes($authenticationToken, $guid)
method send_getResourceAttributes (line 3528) | public function send_getResourceAttributes($authenticationToken, $guid)
method recv_getResourceAttributes (line 3547) | public function recv_getResourceAttributes()
method getPublicNotebook (line 3583) | public function getPublicNotebook($userId, $publicUri)
method send_getPublicNotebook (line 3589) | public function send_getPublicNotebook($userId, $publicUri)
method recv_getPublicNotebook (line 3608) | public function recv_getPublicNotebook()
method createSharedNotebook (line 3641) | public function createSharedNotebook($authenticationToken, \EDAM\Types...
method send_createSharedNotebook (line 3647) | public function send_createSharedNotebook($authenticationToken, \EDAM\...
method recv_createSharedNotebook (line 3666) | public function recv_createSharedNotebook()
method updateSharedNotebook (line 3702) | public function updateSharedNotebook($authenticationToken, \EDAM\Types...
method send_updateSharedNotebook (line 3708) | public function send_updateSharedNotebook($authenticationToken, \EDAM\...
method recv_updateSharedNotebook (line 3727) | public function recv_updateSharedNotebook()
method setSharedNotebookRecipientSettings (line 3763) | public function setSharedNotebookRecipientSettings($authenticationToke...
method send_setSharedNotebookRecipientSettings (line 3769) | public function send_setSharedNotebookRecipientSettings($authenticatio...
method recv_setSharedNotebookRecipientSettings (line 3789) | public function recv_setSharedNotebookRecipientSettings()
method sendMessageToSharedNotebookMembers (line 3825) | public function sendMessageToSharedNotebookMembers($authenticationToke...
method send_sendMessageToSharedNotebookMembers (line 3831) | public function send_sendMessageToSharedNotebookMembers($authenticatio...
method recv_sendMessageToSharedNotebookMembers (line 3852) | public function recv_sendMessageToSharedNotebookMembers()
method listSharedNotebooks (line 3888) | public function listSharedNotebooks($authenticationToken)
method send_listSharedNotebooks (line 3894) | public function send_listSharedNotebooks($authenticationToken)
method recv_listSharedNotebooks (line 3912) | public function recv_listSharedNotebooks()
method expungeSharedNotebooks (line 3948) | public function expungeSharedNotebooks($authenticationToken, $sharedNo...
method send_expungeSharedNotebooks (line 3954) | public function send_expungeSharedNotebooks($authenticationToken, $sha...
method recv_expungeSharedNotebooks (line 3973) | public function recv_expungeSharedNotebooks()
method createLinkedNotebook (line 4009) | public function createLinkedNotebook($authenticationToken, \EDAM\Types...
method send_createLinkedNotebook (line 4015) | public function send_createLinkedNotebook($authenticationToken, \EDAM\...
method recv_createLinkedNotebook (line 4034) | public function recv_createLinkedNotebook()
method updateLinkedNotebook (line 4070) | public function updateLinkedNotebook($authenticationToken, \EDAM\Types...
method send_updateLinkedNotebook (line 4076) | public function send_updateLinkedNotebook($authenticationToken, \EDAM\...
method recv_updateLinkedNotebook (line 4095) | public function recv_updateLinkedNotebook()
method listLinkedNotebooks (line 4131) | public function listLinkedNotebooks($authenticationToken)
method send_listLinkedNotebooks (line 4137) | public function send_listLinkedNotebooks($authenticationToken)
method recv_listLinkedNotebooks (line 4155) | public function recv_listLinkedNotebooks()
method expungeLinkedNotebook (line 4191) | public function expungeLinkedNotebook($authenticationToken, $guid)
method send_expungeLinkedNotebook (line 4197) | public function send_expungeLinkedNotebook($authenticationToken, $guid)
method recv_expungeLinkedNotebook (line 4216) | public function recv_expungeLinkedNotebook()
method authenticateToSharedNotebook (line 4252) | public function authenticateToSharedNotebook($shareKey, $authenticatio...
method send_authenticateToSharedNotebook (line 4258) | public function send_authenticateToSharedNotebook($shareKey, $authenti...
method recv_authenticateToSharedNotebook (line 4277) | public function recv_authenticateToSharedNotebook()
method getSharedNotebookByAuth (line 4313) | public function getSharedNotebookByAuth($authenticationToken)
method send_getSharedNotebookByAuth (line 4319) | public function send_getSharedNotebookByAuth($authenticationToken)
method recv_getSharedNotebookByAuth (line 4337) | public function recv_getSharedNotebookByAuth()
method emailNote (line 4373) | public function emailNote($authenticationToken, \EDAM\NoteStore\NoteEm...
method send_emailNote (line 4379) | public function send_emailNote($authenticationToken, \EDAM\NoteStore\N...
method recv_emailNote (line 4398) | public function recv_emailNote()
method shareNote (line 4431) | public function shareNote($authenticationToken, $guid)
method send_shareNote (line 4437) | public function send_shareNote($authenticationToken, $guid)
method recv_shareNote (line 4456) | public function recv_shareNote()
method stopSharingNote (line 4492) | public function stopSharingNote($authenticationToken, $guid)
method send_stopSharingNote (line 4498) | public function send_stopSharingNote($authenticationToken, $guid)
method recv_stopSharingNote (line 4517) | public function recv_stopSharingNote()
method authenticateToSharedNote (line 4550) | public function authenticateToSharedNote($guid, $noteKey, $authenticat...
method send_authenticateToSharedNote (line 4556) | public function send_authenticateToSharedNote($guid, $noteKey, $authen...
method recv_authenticateToSharedNote (line 4576) | public function recv_authenticateToSharedNote()
method findRelated (line 4612) | public function findRelated($authenticationToken, \EDAM\NoteStore\Rela...
method send_findRelated (line 4618) | public function send_findRelated($authenticationToken, \EDAM\NoteStore...
method recv_findRelated (line 4638) | public function recv_findRelated()
class NoteStore_getSyncState_args (line 4679) | class NoteStore_getSyncState_args {
method __construct (line 4684) | public function __construct($vals=null) {
method getName (line 4700) | public function getName() {
method read (line 4704) | public function read($input)
method write (line 4736) | public function write($output) {
class NoteStore_getSyncState_result (line 4751) | class NoteStore_getSyncState_result {
method __construct (line 4758) | public function __construct($vals=null) {
method getName (line 4791) | public function getName() {
method read (line 4795) | public function read($input)
method write (line 4844) | public function write($output) {
class NoteStore_getSyncStateWithMetrics_args (line 4872) | class NoteStore_getSyncStateWithMetrics_args {
method __construct (line 4878) | public function __construct($vals=null) {
method getName (line 4902) | public function getName() {
method read (line 4906) | public function read($input)
method write (line 4946) | public function write($output) {
class NoteStore_getSyncStateWithMetrics_result (line 4969) | class NoteStore_getSyncStateWithMetrics_result {
method __construct (line 4976) | public function __construct($vals=null) {
method getName (line 5009) | public function getName() {
method read (line 5013) | public function read($input)
method write (line 5062) | public function write($output) {
class NoteStore_getSyncChunk_args (line 5090) | class NoteStore_getSyncChunk_args {
method __construct (line 5098) | public function __construct($vals=null) {
method getName (line 5135) | public function getName() {
method read (line 5139) | public function read($input)
method write (line 5192) | public function write($output) {
class NoteStore_getSyncChunk_result (line 5222) | class NoteStore_getSyncChunk_result {
method __construct (line 5229) | public function __construct($vals=null) {
method getName (line 5262) | public function getName() {
method read (line 5266) | public function read($input)
method write (line 5315) | public function write($output) {
class NoteStore_getFilteredSyncChunk_args (line 5343) | class NoteStore_getFilteredSyncChunk_args {
method __construct (line 5351) | public function __construct($vals=null) {
method getName (line 5389) | public function getName() {
method read (line 5393) | public function read($input)
method write (line 5447) | public function write($output) {
class NoteStore_getFilteredSyncChunk_result (line 5480) | class NoteStore_getFilteredSyncChunk_result {
method __construct (line 5487) | public function __construct($vals=null) {
method getName (line 5520) | public function getName() {
method read (line 5524) | public function read($input)
method write (line 5573) | public function write($output) {
class NoteStore_getLinkedNotebookSyncState_args (line 5601) | class NoteStore_getLinkedNotebookSyncState_args {
method __construct (line 5607) | public function __construct($vals=null) {
method getName (line 5631) | public function getName() {
method read (line 5635) | public function read($input)
method write (line 5675) | public function write($output) {
class NoteStore_getLinkedNotebookSyncState_result (line 5698) | class NoteStore_getLinkedNotebookSyncState_result {
method __construct (line 5706) | public function __construct($vals=null) {
method getName (line 5747) | public function getName() {
method read (line 5751) | public function read($input)
method write (line 5808) | public function write($output) {
class NoteStore_getLinkedNotebookSyncChunk_args (line 5841) | class NoteStore_getLinkedNotebookSyncChunk_args {
method __construct (line 5850) | public function __construct($vals=null) {
method getName (line 5895) | public function getName() {
method read (line 5899) | public function read($input)
method write (line 5960) | public function write($output) {
class NoteStore_getLinkedNotebookSyncChunk_result (line 5998) | class NoteStore_getLinkedNotebookSyncChunk_result {
method __construct (line 6006) | public function __construct($vals=null) {
method getName (line 6047) | public function getName() {
method read (line 6051) | public function read($input)
method write (line 6108) | public function write($output) {
class NoteStore_listNotebooks_args (line 6141) | class NoteStore_listNotebooks_args {
method __construct (line 6146) | public function __construct($vals=null) {
method getName (line 6162) | public function getName() {
method read (line 6166) | public function read($input)
method write (line 6198) | public function write($output) {
class NoteStore_listNotebooks_result (line 6213) | class NoteStore_listNotebooks_result {
method __construct (line 6220) | public function __construct($vals=null) {
method getName (line 6257) | public function getName() {
method read (line 6261) | public function read($input)
method write (line 6320) | public function write($output) {
class NoteStore_getNotebook_args (line 6357) | class NoteStore_getNotebook_args {
method __construct (line 6363) | public function __construct($vals=null) {
method getName (line 6386) | public function getName() {
method read (line 6390) | public function read($input)
method write (line 6429) | public function write($output) {
class NoteStore_getNotebook_result (line 6449) | class NoteStore_getNotebook_result {
method __construct (line 6457) | public function __construct($vals=null) {
method getName (line 6498) | public function getName() {
method read (line 6502) | public function read($input)
method write (line 6559) | public function write($output) {
class NoteStore_getDefaultNotebook_args (line 6592) | class NoteStore_getDefaultNotebook_args {
method __construct (line 6597) | public function __construct($vals=null) {
method getName (line 6613) | public function getName() {
method read (line 6617) | public function read($input)
method write (line 6649) | public function write($output) {
class NoteStore_getDefaultNotebook_result (line 6664) | class NoteStore_getDefaultNotebook_result {
method __construct (line 6671) | public function __construct($vals=null) {
method getName (line 6704) | public function getName() {
method read (line 6708) | public function read($input)
method write (line 6757) | public function write($output) {
class NoteStore_createNotebook_args (line 6785) | class NoteStore_createNotebook_args {
method __construct (line 6791) | public function __construct($vals=null) {
method getName (line 6815) | public function getName() {
method read (line 6819) | public function read($input)
method write (line 6859) | public function write($output) {
class NoteStore_createNotebook_result (line 6882) | class NoteStore_createNotebook_result {
method __construct (line 6889) | public function __construct($vals=null) {
method getName (line 6922) | public function getName() {
method read (line 6926) | public function read($input)
method write (line 6975) | public function write($output) {
class NoteStore_updateNotebook_args (line 7003) | class NoteStore_updateNotebook_args {
method __construct (line 7009) | public function __construct($vals=null) {
method getName (line 7033) | public function getName() {
method read (line 7037) | public function read($input)
method write (line 7077) | public function write($output) {
class NoteStore_updateNotebook_result (line 7100) | class NoteStore_updateNotebook_result {
method __construct (line 7108) | public function __construct($vals=null) {
method getName (line 7148) | public function getName() {
method read (line 7152) | public function read($input)
method write (line 7208) | public function write($output) {
class NoteStore_expungeNotebook_args (line 7238) | class NoteStore_expungeNotebook_args {
method __construct (line 7244) | public function __construct($vals=null) {
method getName (line 7267) | public function getName() {
method read (line 7271) | public function read($input)
method write (line 7310) | public function write($output) {
class NoteStore_expungeNotebook_result (line 7330) | class NoteStore_expungeNotebook_result {
method __construct (line 7338) | public function __construct($vals=null) {
method getName (line 7378) | public function getName() {
method read (line 7382) | public function read($input)
method write (line 7438) | public function write($output) {
class NoteStore_listTags_args (line 7468) | class NoteStore_listTags_args {
method __construct (line 7473) | public function __construct($vals=null) {
method getName (line 7489) | public function getName() {
method read (line 7493) | public function read($input)
method write (line 7525) | public function write($output) {
class NoteStore_listTags_result (line 7540) | class NoteStore_listTags_result {
method __construct (line 7547) | public function __construct($vals=null) {
method getName (line 7584) | public function getName() {
method read (line 7588) | public function read($input)
method write (line 7647) | public function write($output) {
class NoteStore_listTagsByNotebook_args (line 7684) | class NoteStore_listTagsByNotebook_args {
method __construct (line 7690) | public function __construct($vals=null) {
method getName (line 7713) | public function getName() {
method read (line 7717) | public function read($input)
method write (line 7756) | public function write($output) {
class NoteStore_listTagsByNotebook_result (line 7776) | class NoteStore_listTagsByNotebook_result {
method __construct (line 7784) | public function __construct($vals=null) {
method getName (line 7829) | public function getName() {
method read (line 7833) | public function read($input)
method write (line 7900) | public function write($output) {
class NoteStore_getTag_args (line 7942) | class NoteStore_getTag_args {
method __construct (line 7948) | public function __construct($vals=null) {
method getName (line 7971) | public function getName() {
method read (line 7975) | public function read($input)
method write (line 8014) | public function write($output) {
class NoteStore_getTag_result (line 8034) | class NoteStore_getTag_result {
method __construct (line 8042) | public function __construct($vals=null) {
method getName (line 8083) | public function getName() {
method read (line 8087) | public function read($input)
method write (line 8144) | public function write($output) {
class NoteStore_createTag_args (line 8177) | class NoteStore_createTag_args {
method __construct (line 8183) | public function __construct($vals=null) {
method getName (line 8207) | public function getName() {
method read (line 8211) | public function read($input)
method write (line 8251) | public function write($output) {
class NoteStore_createTag_result (line 8274) | class NoteStore_createTag_result {
method __construct (line 8282) | public function __construct($vals=null) {
method getName (line 8323) | public function getName() {
method read (line 8327) | public function read($input)
method write (line 8384) | public function write($output) {
class NoteStore_updateTag_args (line 8417) | class NoteStore_updateTag_args {
method __construct (line 8423) | public function __construct($vals=null) {
method getName (line 8447) | public function getName() {
method read (line 8451) | public function read($input)
method write (line 8491) | public function write($output) {
class NoteStore_updateTag_result (line 8514) | class NoteStore_updateTag_result {
method __construct (line 8522) | public function __construct($vals=null) {
method getName (line 8562) | public function getName() {
method read (line 8566) | public function read($input)
method write (line 8622) | public function write($output) {
class NoteStore_untagAll_args (line 8652) | class NoteStore_untagAll_args {
method __construct (line 8658) | public function __construct($vals=null) {
method getName (line 8681) | public function getName() {
method read (line 8685) | public function read($input)
method write (line 8724) | public function write($output) {
class NoteStore_untagAll_result (line 8744) | class NoteStore_untagAll_result {
method __construct (line 8751) | public function __construct($vals=null) {
method getName (line 8784) | public function getName() {
method read (line 8788) | public function read($input)
method write (line 8837) | public function write($output) {
class NoteStore_expungeTag_args (line 8862) | class NoteStore_expungeTag_args {
method __construct (line 8868) | public function __construct($vals=null) {
method getName (line 8891) | public function getName() {
method read (line 8895) | public function read($input)
method write (line 8934) | public function write($output) {
class NoteStore_expungeTag_result (line 8954) | class NoteStore_expungeTag_result {
method __construct (line 8962) | public function __construct($vals=null) {
method getName (line 9002) | public function getName() {
method read (line 9006) | public function read($input)
method write (line 9062) | public function write($output) {
class NoteStore_listSearches_args (line 9092) | class NoteStore_listSearches_args {
method __construct (line 9097) | public function __construct($vals=null) {
method getName (line 9113) | public function getName() {
method read (line 9117) | public function read($input)
method write (line 9149) | public function write($output) {
class NoteStore_listSearches_result (line 9164) | class NoteStore_listSearches_result {
method __construct (line 9171) | public function __construct($vals=null) {
method getName (line 9208) | public function getName() {
method read (line 9212) | public function read($input)
method write (line 9271) | public function write($output) {
class NoteStore_getSearch_args (line 9308) | class NoteStore_getSearch_args {
method __construct (line 9314) | public function __construct($vals=null) {
method getName (line 9337) | public function getName() {
method read (line 9341) | public function read($input)
method write (line 9380) | public function write($output) {
class NoteStore_getSearch_result (line 9400) | class NoteStore_getSearch_result {
method __construct (line 9408) | public function __construct($vals=null) {
method getName (line 9449) | public function getName() {
method read (line 9453) | public function read($input)
method write (line 9510) | public function write($output) {
class NoteStore_createSearch_args (line 9543) | class NoteStore_createSearch_args {
method __construct (line 9549) | public function __construct($vals=null) {
method getName (line 9573) | public function getName() {
method read (line 9577) | public function read($input)
method write (line 9617) | public function write($output) {
class NoteStore_createSearch_result (line 9640) | class NoteStore_createSearch_result {
method __construct (line 9647) | public function __construct($vals=null) {
method getName (line 9680) | public function getName() {
method read (line 9684) | public function read($input)
method write (line 9733) | public function write($output) {
class NoteStore_updateSearch_args (line 9761) | class NoteStore_updateSearch_args {
method __construct (line 9767) | public function __construct($vals=null) {
method getName (line 9791) | public function getName() {
method read (line 9795) | public function read($input)
method write (line 9835) | public function write($output) {
class NoteStore_updateSearch_result (line 9858) | class NoteStore_updateSearch_result {
method __construct (line 9866) | public function __construct($vals=null) {
method getName (line 9906) | public function getName() {
method read (line 9910) | public function read($input)
method write (line 9966) | public function write($output) {
class NoteStore_expungeSearch_args (line 9996) | class NoteStore_expungeSearch_args {
method __construct (line 10002) | public function __construct($vals=null) {
method getName (line 10025) | public function getName() {
method read (line 10029) | public function read($input)
method write (line 10068) | public function write($output) {
class NoteStore_expungeSearch_result (line 10088) | class NoteStore_expungeSearch_result {
method __construct (line 10096) | public function __construct($vals=null) {
method getName (line 10136) | public function getName() {
method read (line 10140) | public function read($input)
method write (line 10196) | public function write($output) {
class NoteStore_findNotes_args (line 10226) | class NoteStore_findNotes_args {
method __construct (line 10234) | public function __construct($vals=null) {
method getName (line 10272) | public function getName() {
method read (line 10276) | public function read($input)
method write (line 10330) | public function write($output) {
class NoteStore_findNotes_result (line 10363) | class NoteStore_findNotes_result {
method __construct (line 10371) | public function __construct($vals=null) {
method getName (line 10412) | public function getName() {
method read (line 10416) | public function read($input)
method write (line 10473) | public function write($output) {
class NoteStore_findNoteOffset_args (line 10506) | class NoteStore_findNoteOffset_args {
method __construct (line 10513) | public function __construct($vals=null) {
method getName (line 10544) | public function getName() {
method read (line 10548) | public function read($input)
method write (line 10595) | public function write($output) {
class NoteStore_findNoteOffset_result (line 10623) | class NoteStore_findNoteOffset_result {
method __construct (line 10631) | public function __construct($vals=null) {
method getName (line 10671) | public function getName() {
method read (line 10675) | public function read($input)
method write (line 10731) | public function write($output) {
class NoteStore_findNotesMetadata_args (line 10761) | class NoteStore_findNotesMetadata_args {
method __construct (line 10770) | public function __construct($vals=null) {
method getName (line 10816) | public function getName() {
method read (line 10820) | public function read($input)
method write (line 10882) | public function write($output) {
class NoteStore_findNotesMetadata_result (line 10923) | class NoteStore_findNotesMetadata_result {
method __construct (line 10931) | public function __construct($vals=null) {
method getName (line 10972) | public function getName() {
method read (line 10976) | public function read($input)
method write (line 11033) | public function write($output) {
class NoteStore_findNoteCounts_args (line 11066) | class NoteStore_findNoteCounts_args {
method __construct (line 11073) | public function __construct($vals=null) {
method getName (line 11104) | public function getName() {
method read (line 11108) | public function read($input)
method write (line 11155) | public function write($output) {
class NoteStore_findNoteCounts_result (line 11183) | class NoteStore_findNoteCounts_result {
method __construct (line 11191) | public function __construct($vals=null) {
method getName (line 11232) | public function getName() {
method read (line 11236) | public function read($input)
method write (line 11293) | public function write($output) {
class NoteStore_getNote_args (line 11326) | class NoteStore_getNote_args {
method __construct (line 11336) | public function __construct($vals=null) {
method getName (line 11387) | public function getName() {
method read (line 11391) | public function read($input)
method write (line 11458) | public function write($output) {
class NoteStore_getNote_result (line 11498) | class NoteStore_getNote_result {
method __construct (line 11506) | public function __construct($vals=null) {
method getName (line 11547) | public function getName() {
method read (line 11551) | public function read($input)
method write (line 11608) | public function write($output) {
class NoteStore_getNoteApplicationData_args (line 11641) | class NoteStore_getNoteApplicationData_args {
method __construct (line 11647) | public function __construct($vals=null) {
method getName (line 11670) | public function getName() {
method read (line 11674) | public function read($input)
method write (line 11713) | public function write($output) {
class NoteStore_getNoteApplicationData_result (line 11733) | class NoteStore_getNoteApplicationData_result {
method __construct (line 11741) | public function __construct($vals=null) {
method getName (line 11782) | public function getName() {
method read (line 11786) | public function read($input)
method write (line 11843) | public function write($output) {
class NoteStore_getNoteApplicationDataEntry_args (line 11876) | class NoteStore_getNoteApplicationDataEntry_args {
method __construct (line 11883) | public function __construct($vals=null) {
method getName (line 11913) | public function getName() {
method read (line 11917) | public function read($input)
method write (line 11963) | public function write($output) {
class NoteStore_getNoteApplicationDataEntry_result (line 11988) | class NoteStore_getNoteApplicationDataEntry_result {
method __construct (line 11996) | public function __construct($vals=null) {
method getName (line 12036) | public function getName() {
method read (line 12040) | public function read($input)
method write (line 12096) | public function write($output) {
class NoteStore_setNoteApplicationDataEntry_args (line 12126) | class NoteStore_setNoteApplicationDataEntry_args {
method __construct (line 12134) | public function __construct($vals=null) {
method getName (line 12171) | public function getName() {
method read (line 12175) | public function read($input)
method write (line 12228) | public function write($output) {
class NoteStore_setNoteApplicationDataEntry_result (line 12258) | class NoteStore_setNoteApplicationDataEntry_result {
method __construct (line 12266) | public function __construct($vals=null) {
method getName (line 12306) | public function getName() {
method read (line 12310) | public function read($input)
method write (line 12366) | public function write($output) {
class NoteStore_unsetNoteApplicationDataEntry_args (line 12396) | class NoteStore_unsetNoteApplicationDataEntry_args {
method __construct (line 12403) | public function __construct($vals=null) {
method getName (line 12433) | public function getName() {
method read (line 12437) | public function read($input)
method write (line 12483) | public function write($output) {
class NoteStore_unsetNoteApplicationDataEntry_result (line 12508) | class NoteStore_unsetNoteApplicationDataEntry_result {
method __construct (line 12516) | public function __construct($vals=null) {
method getName (line 12556) | public function getName() {
method read (line 12560) | public function read($input)
method write (line 12616) | public function write($output) {
class NoteStore_getNoteContent_args (line 12646) | class NoteStore_getNoteContent_args {
method __construct (line 12652) | public function __construct($vals=null) {
method getName (line 12675) | public function getName() {
method read (line 12679) | public function read($input)
method write (line 12718) | public function write($output) {
class NoteStore_getNoteContent_result (line 12738) | class NoteStore_getNoteContent_result {
method __construct (line 12746) | public function __construct($vals=null) {
method getName (line 12786) | public function getName() {
method read (line 12790) | public function read($input)
method write (line 12846) | public function write($output) {
class NoteStore_getNoteSearchText_args (line 12876) | class NoteStore_getNoteSearchText_args {
method __construct (line 12884) | public function __construct($vals=null) {
method getName (line 12921) | public function getName() {
method read (line 12925) | public function read($input)
method write (line 12978) | public function write($output) {
class NoteStore_getNoteSearchText_result (line 13008) | class NoteStore_getNoteSearchText_result {
method __construct (line 13016) | public function __construct($vals=null) {
method getName (line 13056) | public function getName() {
method read (line 13060) | public function read($input)
method write (line 13116) | public function write($output) {
class NoteStore_getResourceSearchText_args (line 13146) | class NoteStore_getResourceSearchText_args {
method __construct (line 13152) | public function __construct($vals=null) {
method getName (line 13175) | public function getName() {
method read (line 13179) | public function read($input)
method write (line 13218) | public function write($output) {
class NoteStore_getResourceSearchText_result (line 13238) | class NoteStore_getResourceSearchText_result {
method __construct (line 13246) | public function __construct($vals=null) {
method getName (line 13286) | public function getName() {
method read (line 13290) | public function read($input)
method write (line 13346) | public function write($output) {
class NoteStore_getNoteTagNames_args (line 13376) | class NoteStore_getNoteTagNames_args {
method __construct (line 13382) | public function __construct($vals=null) {
method getName (line 13405) | public function getName() {
method read (line 13409) | public function read($input)
method write (line 13448) | public function write($output) {
class NoteStore_getNoteTagNames_result (line 13468) | class NoteStore_getNoteTagNames_result {
method __construct (line 13476) | public function __construct($vals=null) {
method getName (line 13520) | public function getName() {
method read (line 13524) | public function read($input)
method write (line 13590) | public function write($output) {
class NoteStore_createNote_args (line 13632) | class NoteStore_createNote_args {
method __construct (line 13638) | public function __construct($vals=null) {
method getName (line 13662) | public function getName() {
method read (line 13666) | public function read($input)
method write (line 13706) | public function write($output) {
class NoteStore_createNote_result (line 13729) | class NoteStore_createNote_result {
method __construct (line 13737) | public function __construct($vals=null) {
method getName (line 13778) | public function getName() {
method read (line 13782) | public function read($input)
method write (line 13839) | public function write($output) {
class NoteStore_updateNote_args (line 13872) | class NoteStore_updateNote_args {
method __construct (line 13878) | public function __construct($vals=null) {
method getName (line 13902) | public function getName() {
method read (line 13906) | public function read($input)
method write (line 13946) | public function write($output) {
class NoteStore_updateNote_result (line 13969) | class NoteStore_updateNote_result {
method __construct (line 13977) | public function __construct($vals=null) {
method getName (line 14018) | public function getName() {
method read (line 14022) | public function read($input)
method write (line 14079) | public function write($output) {
class NoteStore_deleteNote_args (line 14112) | class NoteStore_deleteNote_args {
method __construct (line 14118) | public function __construct($vals=null) {
method getName (line 14141) | public function getName() {
method read (line 14145) | public function read($input)
method write (line 14184) | public function write($output) {
class NoteStore_deleteNote_result (line 14204) | class NoteStore_deleteNote_result {
method __construct (line 14212) | public function __construct($vals=null) {
method getName (line 14252) | public function getName() {
method read (line 14256) | public function read($input)
method write (line 14312) | public function write($output) {
class NoteStore_expungeNote_args (line 14342) | class NoteStore_expungeNote_args {
method __construct (line 14348) | public function __construct($vals=null) {
method getName (line 14371) | public function getName() {
method read (line 14375) | public function read($input)
method write (line 14414) | public function write($output) {
class NoteStore_expungeNote_result (line 14434) | class NoteStore_expungeNote_result {
method __construct (line 14442) | public function __construct($vals=null) {
method getName (line 14482) | public function getName() {
method read (line 14486) | public function read($input)
method write (line 14542) | public function write($output) {
class NoteStore_expungeNotes_args (line 14572) | class NoteStore_expungeNotes_args {
method __construct (line 14578) | public function __construct($vals=null) {
method getName (line 14605) | public function getName() {
method read (line 14609) | public function read($input)
method write (line 14658) | public function write($output) {
class NoteStore_expungeNotes_result (line 14690) | class NoteStore_expungeNotes_result {
method __construct (line 14698) | public function __construct($vals=null) {
method getName (line 14738) | public function getName() {
method read (line 14742) | public function read($input)
method write (line 14798) | public function write($output) {
class NoteStore_expungeInactiveNotes_args (line 14828) | class NoteStore_expungeInactiveNotes_args {
method __construct (line 14833) | public function __construct($vals=null) {
method getName (line 14849) | public function getName() {
method read (line 14853) | public function read($input)
method write (line 14885) | public function write($output) {
class NoteStore_expungeInactiveNotes_result (line 14900) | class NoteStore_expungeInactiveNotes_result {
method __construct (line 14907) | public function __construct($vals=null) {
method getName (line 14939) | public function getName() {
method read (line 14943) | public function read($input)
method write (line 14991) | public function write($output) {
class NoteStore_copyNote_args (line 15016) | class NoteStore_copyNote_args {
method __construct (line 15023) | public function __construct($vals=null) {
method getName (line 15053) | public function getName() {
method read (line 15057) | public function read($input)
method write (line 15103) | public function write($output) {
class NoteStore_copyNote_result (line 15128) | class NoteStore_copyNote_result {
method __construct (line 15136) | public function __construct($vals=null) {
method getName (line 15177) | public function getName() {
method read (line 15181) | public function read($input)
method write (line 15238) | public function write($output) {
class NoteStore_listNoteVersions_args (line 15271) | class NoteStore_listNoteVersions_args {
method __construct (line 15277) | public function __construct($vals=null) {
method getName (line 15300) | public function getName() {
method read (line 15304) | public function read($input)
method write (line 15343) | public function write($output) {
class NoteStore_listNoteVersions_result (line 15363) | class NoteStore_listNoteVersions_result {
method __construct (line 15371) | public function __construct($vals=null) {
method getName (line 15416) | public function getName() {
method read (line 15420) | public function read($input)
method write (line 15487) | public function write($output) {
class NoteStore_getNoteVersion_args (line 15529) | class NoteStore_getNoteVersion_args {
method __construct (line 15539) | public function __construct($vals=null) {
method getName (line 15590) | public function getName() {
method read (line 15594) | public function read($input)
method write (line 15661) | public function write($output) {
class NoteStore_getNoteVersion_result (line 15701) | class NoteStore_getNoteVersion_result {
method __construct (line 15709) | public function __construct($vals=null) {
method getName (line 15750) | public function getName() {
method read (line 15754) | public function read($input)
method write (line 15811) | public function write($output) {
class NoteStore_getResource_args (line 15844) | class NoteStore_getResource_args {
method __construct (line 15854) | public function __construct($vals=null) {
method getName (line 15905) | public function getName() {
method read (line 15909) | public function read($input)
method write (line 15976) | public function write($output) {
class NoteStore_getResource_result (line 16016) | class NoteStore_getResource_result {
method __construct (line 16024) | public function __construct($vals=null) {
method getName (line 16065) | public function getName() {
method read (line 16069) | public function read($input)
method write (line 16126) | public function write($output) {
class NoteStore_getResourceApplicationData_args (line 16159) | class NoteStore_getResourceApplicationData_args {
method __construct (line 16165) | public function __construct($vals=null) {
method getName (line 16188) | public function getName() {
method read (line 16192) | public function read($input)
method write (line 16231) | public function write($output) {
class NoteStore_getResourceApplicationData_result (line 16251) | class NoteStore_getResourceApplicationData_result {
method __construct (line 16259) | public function __construct($vals=null) {
method getName (line 16300) | public function getName() {
method read (line 16304) | public function read($input)
method write (line 16361) | public function write($output) {
class NoteStore_getResourceApplicationDataEntry_args (line 16394) | class NoteStore_getResourceApplicationDataEntry_args {
method __construct (line 16401) | public function __construct($vals=null) {
method getName (line 16431) | public function getName() {
method read (line 16435) | public function read($input)
method write (line 16481) | public function write($output) {
class NoteStore_getResourceApplicationDataEntry_result (line 16506) | class NoteStore_getResourceApplicationDataEntry_result {
method __construct (line 16514) | public function __construct($vals=null) {
method getName (line 16554) | public function getName() {
method read (line 16558) | public function read($input)
method write (line 16614) | public function write($output) {
class NoteStore_setResourceApplicationDataEntry_args (line 16644) | class NoteStore_setResourceApplicationDataEntry_args {
method __construct (line 16652) | public function __construct($vals=null) {
method getName (line 16689) | public function getName() {
method read (line 16693) | public function read($input)
method write (line 16746) | public function write($output) {
class NoteStore_setResourceApplicationDataEntry_result (line 16776) | class NoteStore_setResourceApplicationDataEntry_result {
method __construct (line 16784) | public function __construct($vals=null) {
method getName (line 16824) | public function getName() {
method read (line 16828) | public function read($input)
method write (line 16884) | public function write($output) {
class NoteStore_unsetResourceApplicationDataEntry_args (line 16914) | class NoteStore_unsetResourceApplicationDataEntry_args {
method __construct (line 16921) | public function __construct($vals=null) {
method getName (line 16951) | public function getName() {
method read (line 16955) | public function read($input)
method write (line 17001) | public function write($output) {
class NoteStore_unsetResourceApplicationDataEntry_result (line 17026) | class NoteStore_unsetResourceApplicationDataEntry_result {
method __construct (line 17034) | public function __construct($vals=null) {
method getName (line 17074) | public function getName() {
method read (line 17078) | public function read($input)
method write (line 17134) | public function write($output) {
class NoteStore_updateResource_args (line 17164) | class NoteStore_updateResource_args {
method __construct (line 17170) | public function __construct($vals=null) {
method getName (line 17194) | public function getName() {
method read (line 17198) | public function read($input)
method write (line 17238) | public function write($output) {
class NoteStore_updateResource_result (line 17261) | class NoteStore_updateResource_result {
method __construct (line 17269) | public function __construct($vals=null) {
method getName (line 17309) | public function getName() {
method read (line 17313) | public function read($input)
method write (line 17369) | public function write($output) {
class NoteStore_getResourceData_args (line 17399) | class NoteStore_getResourceData_args {
method __construct (line 17405) | public function __construct($vals=null) {
method getName (line 17428) | public function getName() {
method read (line 17432) | public function read($input)
method write (line 17471) | public function write($output) {
class NoteStore_getResourceData_result (line 17491) | class NoteStore_getResourceData_result {
method __construct (line 17499) | public function __construct($vals=null) {
method getName (line 17539) | public function getName() {
method read (line 17543) | public function read($input)
method write (line 17599) | public function write($output) {
class NoteStore_getResourceByHash_args (line 17629) | class NoteStore_getResourceByHash_args {
method __construct (line 17639) | public function __construct($vals=null) {
method getName (line 17690) | public function getName() {
method read (line 17694) | public function read($input)
method write (line 17761) | public function write($output) {
class NoteStore_getResourceByHash_result (line 17801) | class NoteStore_getResourceByHash_result {
method __construct (line 17809) | public function __construct($vals=null) {
method getName (line 17850) | public function getName() {
method read (line 17854) | public function read($input)
method write (line 17911) | public function write($output) {
class NoteStore_getResourceRecognition_args (line 17944) | class NoteStore_getResourceRecognition_args {
method __construct (line 17950) | public function __construct($vals=null) {
method getName (line 17973) | public function getName() {
method read (line 17977) | public function read($input)
method write (line 18016) | public function write($output) {
class NoteStore_getResourceRecognition_result (line 18036) | class NoteStore_getResourceRecognition_result {
method __construct (line 18044) | public function __construct($vals=null) {
method getName (line 18084) | public function getName() {
method read (line 18088) | public function read($input)
method write (line 18144) | public function write($output) {
class NoteStore_getResourceAlternateData_args (line 18174) | class NoteStore_getResourceAlternateData_args {
method __construct (line 18180) | public function __construct($vals=null) {
method getName (line 18203) | public function getName() {
method read (line 18207) | public function read($input)
method write (line 18246) | public function write($output) {
class NoteStore_getResourceAlternateData_result (line 18266) | class NoteStore_getResourceAlternateData_result {
method __construct (line 18274) | public function __construct($vals=null) {
method getName (line 18314) | public function getName() {
method read (line 18318) | public function read($input)
method write (line 18374) | public function write($output) {
class NoteStore_getResourceAttributes_args (line 18404) | class NoteStore_getResourceAttributes_args {
method __construct (line 18410) | public function __construct($vals=null) {
method getName (line 18433) | public function getName() {
method read (line 18437) | public function read($input)
method write (line 18476) | public function write($output) {
class NoteStore_getResourceAttributes_result (line 18496) | class NoteStore_getResourceAttributes_result {
method __construct (line 18504) | public function __construct($vals=null) {
method getName (line 18545) | public function getName() {
method read (line 18549) | public function read($input)
method write (line 18606) | public function write($output) {
class NoteStore_getPublicNotebook_args (line 18639) | class NoteStore_getPublicNotebook_args {
method __construct (line 18645) | public function __construct($vals=null) {
method getName (line 18668) | public function getName() {
method read (line 18672) | public function read($input)
method write (line 18711) | public function write($output) {
class NoteStore_getPublicNotebook_result (line 18731) | class NoteStore_getPublicNotebook_result {
method __construct (line 18738) | public function __construct($vals=null) {
method getName (line 18771) | public function getName() {
method read (line 18775) | public function read($input)
method write (line 18824) | public function write($output) {
class NoteStore_createSharedNotebook_args (line 18852) | class NoteStore_createSharedNotebook_args {
method __construct (line 18858) | public function __construct($vals=null) {
method getName (line 18882) | public function getName() {
method read (line 18886) | public function read($input)
method write (line 18926) | public function write($output) {
class NoteStore_createSharedNotebook_result (line 18949) | class NoteStore_createSharedNotebook_result {
method __construct (line 18957) | public function __construct($vals=null) {
method getName (line 18998) | public function getName() {
method read (line 19002) | public function read($input)
method write (line 19059) | public function write($output) {
class NoteStore_updateSharedNotebook_args (line 19092) | class NoteStore_updateSharedNotebook_args {
method __construct (line 19098) | public function __construct($vals=null) {
method getName (line 19122) | public function getName() {
method read (line 19126) | public function read($input)
method write (line 19166) | public function write($output) {
class NoteStore_updateSharedNotebook_result (line 19189) | class NoteStore_updateSharedNotebook_result {
method __construct (line 19197) | public function __construct($vals=null) {
method getName (line 19237) | public function getName() {
method read (line 19241) | public function read($input)
method write (line 19297) | public function write($output) {
class NoteStore_setSharedNotebookRecipientSettings_args (line 19327) | class NoteStore_setSharedNotebookRecipientSettings_args {
method __construct (line 19334) | public function __construct($vals=null) {
method getName (line 19365) | public function getName() {
method read (line 19369) | public function read($input)
method write (line 19416) | public function write($output) {
class NoteStore_setSharedNotebookRecipientSettings_result (line 19444) | class NoteStore_setSharedNotebookRecipientSettings_result {
method __construct (line 19452) | public function __construct($vals=null) {
method getName (line 19492) | public function getName() {
method read (line 19496) | public function read($input)
method write (line 19552) | public function write($output) {
class NoteStore_sendMessageToSharedNotebookMembers_args (line 19582) | class NoteStore_sendMessageToSharedNotebookMembers_args {
method __construct (line 19590) | public function __construct($vals=null) {
method getName (line 19631) | public function getName() {
method read (line 19635) | public function read($input)
method write (line 19698) | public function write($output) {
class NoteStore_sendMessageToSharedNotebookMembers_result (line 19740) | class NoteStore_sendMessageToSharedNotebookMembers_result {
method __construct (line 19748) | public function __construct($vals=null) {
method getName (line 19788) | public function getName() {
method read (line 19792) | public function read($input)
method write (line 19848) | public function write($output) {
class NoteStore_listSharedNotebooks_args (line 19878) | class NoteStore_listSharedNotebooks_args {
method __construct (line 19883) | public function __construct($vals=null) {
method getName (line 19899) | public function getName() {
method read (line 19903) | public function read($input)
method write (line 19935) | public function write($output) {
class NoteStore_listSharedNotebooks_result (line 19950) | class NoteStore_listSharedNotebooks_result {
method __construct (line 19958) | public function __construct($vals=null) {
method getName (line 20003) | public function getName() {
method read (line 20007) | public function read($input)
method write (line 20074) | public function write($output) {
class NoteStore_expungeSharedNotebooks_args (line 20116) | class NoteStore_expungeSharedNotebooks_args {
method __construct (line 20122) | public function __construct($vals=null) {
method getName (line 20149) | public function getName() {
method read (line 20153) | public function read($input)
method write (line 20202) | public function write($output) {
class NoteStore_expungeSharedNotebooks_result (line 20234) | class NoteStore_expungeSharedNotebooks_result {
method __construct (line 20242) | public function __construct($vals=null) {
method getName (line 20282) | public function getName() {
method read (line 20286) | public function read($input)
method write (line 20342) | public function write($output) {
class NoteStore_createLinkedNotebook_args (line 20372) | class NoteStore_createLinkedNotebook_args {
method __construct (line 20378) | public function __construct($vals=null) {
method getName (line 20402) | public function getName() {
method read (line 20406) | public function read($input)
method write (line 20446) | public function write($output) {
class NoteStore_createLinkedNotebook_result (line 20469) | class NoteStore_createLinkedNotebook_result {
method __construct (line 20477) | public function __construct($vals=null) {
method getName (line 20518) | public function getName() {
method read (line 20522) | public function read($input)
method write (line 20579) | public function write($output) {
class NoteStore_updateLinkedNotebook_args (line 20612) | class NoteStore_updateLinkedNotebook_args {
method __construct (line 20618) | public function __construct($vals=null) {
method getName (line 20642) | public function getName() {
method read (line 20646) | public function read($input)
method write (line 20686) | public function write($output) {
class NoteStore_updateLinkedNotebook_result (line 20709) | class NoteStore_updateLinkedNotebook_result {
method __construct (line 20717) | public function __construct($vals=null) {
method getName (line 20757) | public function getName() {
method read (line 20761) | public function read($input)
method write (line 20817) | public function write($output) {
class NoteStore_listLinkedNotebooks_args (line 20847) | class NoteStore_listLinkedNotebooks_args {
method __construct (line 20852) | public function __construct($vals=null) {
method getName (line 20868) | public function getName() {
method read (line 20872) | public function read($input)
method write (line 20904) | public function write($output) {
class NoteStore_listLinkedNotebooks_result (line 20919) | class NoteStore_listLinkedNotebooks_result {
method __construct (line 20927) | public function __construct($vals=null) {
method getName (line 20972) | public function getName() {
method read (line 20976) | public function read($input)
method write (line 21043) | public function write($output) {
class NoteStore_expungeLinkedNotebook_args (line 21085) | class NoteStore_expungeLinkedNotebook_args {
method __construct (line 21091) | public function __construct($vals=null) {
method getName (line 21114) | public function getName() {
method read (line 21118) | public function read($input)
method write (line 21157) | public function write($output) {
class NoteStore_expungeLinkedNotebook_result (line 21177) | class NoteStore_expungeLinkedNotebook_result {
method __construct (line 21185) | public function __construct($vals=null) {
method getName (line 21225) | public function getName() {
method read (line 21229) | public function read($input)
method write (line 21285) | public function write($output) {
class NoteStore_authenticateToSharedNotebook_args (line 21315) | class NoteStore_authenticateToSharedNotebook_args {
method __construct (line 21321) | public function __construct($vals=null) {
method getName (line 21344) | public function getName() {
method read (line 21348) | public function read($input)
method write (line 21387) | public function write($output) {
class NoteStore_authenticateToSharedNotebook_result (line 21407) | class NoteStore_authenticateToSharedNotebook_result {
method __construct (line 21415) | public function __construct($vals=null) {
method getName (line 21456) | public function getName() {
method read (line 21460) | public function read($input)
method write (line 21517) | public function write($output) {
class NoteStore_getSharedNotebookByAuth_args (line 21550) | class NoteStore_getSharedNotebookByAuth_args {
method __construct (line 21555) | public function __construct($vals=null) {
method getName (line 21571) | public function getName() {
method read (line 21575) | public function read($input)
method write (line 21607) | public function write($output) {
class NoteStore_getSharedNotebookByAuth_result (line 21622) | class NoteStore_getSharedNotebookByAuth_result {
method __construct (line 21630) | public function __construct($vals=null) {
method getName (line 21671) | public function getName() {
method read (line 21675) | public function read($input)
method write (line 21732) | public function write($output) {
class NoteStore_emailNote_args (line 21765) | class NoteStore_emailNote_args {
method __construct (line 21771) | public function __construct($vals=null) {
method getName (line 21795) | public function getName() {
method read (line 21799) | public function read($input)
method write (line 21839) | public function write($output) {
class NoteStore_emailNote_result (line 21862) | class NoteStore_emailNote_result {
method __construct (line 21869) | public function __construct($vals=null) {
method getName (line 21902) | public function getName() {
method read (line 21906) | public function read($input)
method write (line 21955) | public function write($output) {
class NoteStore_shareNote_args (line 21980) | class NoteStore_shareNote_args {
method __construct (line 21986) | public function __construct($vals=null) {
method getName (line 22009) | public function getName() {
method read (line 22013) | public function read($input)
method write (line 22052) | public function write($output) {
class NoteStore_shareNote_result (line 22072) | class NoteStore_shareNote_result {
method __construct (line 22080) | public function __construct($vals=null) {
method getName (line 22120) | public function getName() {
method read (line 22124) | public function read($input)
method write (line 22180) | public function write($output) {
class NoteStore_stopSharingNote_args (line 22210) | class NoteStore_stopSharingNote_args {
method __construct (line 22216) | public function __construct($vals=null) {
method getName (line 22239) | public function getName() {
method read (line 22243) | public function read($input)
method write (line 22282) | public function write($output) {
class NoteStore_stopSharingNote_result (line 22302) | class NoteStore_stopSharingNote_result {
method __construct (line 22309) | public function __construct($vals=null) {
method getName (line 22342) | public function getName() {
method read (line 22346) | public function read($input)
method write (line 22395) | public function write($output) {
class NoteStore_authenticateToSharedNote_args (line 22420) | class NoteStore_authenticateToSharedNote_args {
method __construct (line 22427) | public function __construct($vals=null) {
method getName (line 22457) | public function getName() {
method read (line 22461) | public function read($input)
method write (line 22507) | public function write($output) {
class NoteStore_authenticateToSharedNote_result (line 22532) | class NoteStore_authenticateToSharedNote_result {
method __construct (line 22540) | public function __construct($vals=null) {
method getName (line 22581) | public function getName() {
method read (line 22585) | public function read($input)
method write (line 22642) | public function write($output) {
class NoteStore_findRelated_args (line 22675) | class NoteStore_findRelated_args {
method __construct (line 22682) | public function __construct($vals=null) {
method getName (line 22714) | public function getName() {
method read (line 22718) | public function read($input)
method write (line 22766) | public function write($output) {
class NoteStore_findRelated_result (line 22797) | class NoteStore_findRelated_result {
method __construct (line 22805) | public function __construct($vals=null) {
method getName (line 22846) | public function getName() {
method read (line 22850) | public function read($input)
method write (line 22907) | public function write($output) {
FILE: src/EDAM/NoteStore/Types.php
class SyncState (line 20) | class SyncState {
method __construct (line 28) | public function __construct($vals=null) {
method getName (line 65) | public function getName() {
method read (line 69) | public function read($input)
method write (line 122) | public function write($output) {
class SyncChunk (line 152) | class SyncChunk {
method __construct (line 170) | public function __construct($vals=null) {
method getName (line 327) | public function getName() {
method read (line 331) | public function read($input)
method write (line 570) | public function write($output) {
class SyncChunkFilter (line 782) | class SyncChunkFilter {
method __construct (line 799) | public function __construct($vals=null) {
method getName (line 899) | public function getName() {
method read (line 903) | public function read($input)
method write (line 1019) | public function write($output) {
class NoteFilter (line 1094) | class NoteFilter {
method __construct (line 1106) | public function __construct($vals=null) {
method getName (line 1175) | public function getName() {
method read (line 1179) | public function read($input)
method write (line 1270) | public function write($output) {
class NoteList (line 1332) | class NoteList {
method __construct (line 1342) | public function __construct($vals=null) {
method getName (line 1406) | public function getName() {
method read (line 1410) | public function read($input)
method write (line 1508) | public function write($output) {
class NoteMetadata (line 1584) | class NoteMetadata {
method __construct (line 1600) | public function __construct($vals=null) {
method getName (line 1698) | public function getName() {
method read (line 1702) | public function read($input)
method write (line 1822) | public function write($output) {
class NotesMetadataList (line 1907) | class NotesMetadataList {
method __construct (line 1917) | public function __construct($vals=null) {
method getName (line 1981) | public function getName() {
method read (line 1985) | public function read($input)
method write (line 2083) | public function write($output) {
class NotesMetadataResultSpec (line 2159) | class NotesMetadataResultSpec {
method __construct (line 2174) | public function __construct($vals=null) {
method getName (line 2260) | public function getName() {
method read (line 2264) | public function read($input)
method write (line 2366) | public function write($output) {
class NoteCollectionCounts (line 2431) | class NoteCollectionCounts {
method __construct (line 2438) | public function __construct($vals=null) {
method getName (line 2484) | public function getName() {
method read (line 2488) | public function read($input)
method write (line 2560) | public function write($output) {
class NoteEmailParameters (line 2611) | class NoteEmailParameters {
method __construct (line 2621) | public function __construct($vals=null) {
method getName (line 2681) | public function getName() {
method read (line 2685) | public function read($input)
method write (line 2773) | public function write($output) {
class NoteVersionId (line 2840) | class NoteVersionId {
method __construct (line 2848) | public function __construct($vals=null) {
method getName (line 2885) | public function getName() {
method read (line 2889) | public function read($input)
method write (line 2942) | public function write($output) {
class ClientUsageMetrics (line 2972) | class ClientUsageMetrics {
method __construct (line 2977) | public function __construct($vals=null) {
method getName (line 2993) | public function getName() {
method read (line 2997) | public function read($input)
method write (line 3029) | public function write($output) {
class RelatedQuery (line 3044) | class RelatedQuery {
method __construct (line 3052) | public function __construct($vals=null) {
method getName (line 3090) | public function getName() {
method read (line 3094) | public function read($input)
method write (line 3148) | public function write($output) {
class RelatedResult (line 3181) | class RelatedResult {
method __construct (line 3189) | public function __construct($vals=null) {
method getName (line 3246) | public function getName() {
method read (line 3250) | public function read($input)
method write (line 3347) | public function write($output) {
class RelatedResultSpec (line 3425) | class RelatedResultSpec {
method __construct (line 3434) | public function __construct($vals=null) {
method getName (line 3478) | public function getName() {
method read (line 3482) | public function read($input)
method write (line 3542) | public function write($output) {
FILE: src/EDAM/Types/Types.php
class PrivilegeLevel (line 20) | final class PrivilegeLevel {
class QueryFormat (line 37) | final class QueryFormat {
class NoteSortOrder (line 46) | final class NoteSortOrder {
class PremiumOrderStatus (line 61) | final class PremiumOrderStatus {
class SharedNotebookPrivilegeLevel (line 78) | final class SharedNotebookPrivilegeLevel {
class SponsoredGroupRole (line 95) | final class SponsoredGroupRole {
class BusinessUserRole (line 106) | final class BusinessUserRole {
class SharedNotebookInstanceRestrictions (line 115) | final class SharedNotebookInstanceRestrictions {
class ReminderEmailConfig (line 124) | final class ReminderEmailConfig {
class Data (line 133) | class Data {
method __construct (line 140) | public function __construct($vals=null) {
method getName (line 170) | public function getName() {
method read (line 174) | public function read($input)
method write (line 220) | public function write($output) {
class UserAttributes (line 245) | class UserAttributes {
method __construct (line 280) | public function __construct($vals=null) {
method getName (line 514) | public function getName() {
method read (line 518) | public function read($input)
method write (line 780) | public function write($output) {
class Accounting (line 969) | class Accounting {
method __construct (line 996) | public function __construct($vals=null) {
method getName (line 1166) | public function getName() {
method read (line 1170) | public function read($input)
method write (line 1356) | public function write($output) {
class BusinessUserInfo (line 1481) | class BusinessUserInfo {
method __construct (line 1489) | public function __construct($vals=null) {
method getName (line 1526) | public function getName() {
method read (line 1530) | public function read($input)
method write (line 1583) | public function write($output) {
class PremiumInfo (line 1613) | class PremiumInfo {
method __construct (line 1628) | public function __construct($vals=null) {
method getName (line 1714) | public function getName() {
method read (line 1718) | public function read($input)
method write (line 1820) | public function write($output) {
class User (line 1885) | class User {
method __construct (line 1904) | public function __construct($vals=null) {
method getName (line 2022) | public function getName() {
method read (line 2026) | public function read($input)
method write (line 2160) | public function write($output) {
class Tag (line 2257) | class Tag {
method __construct (line 2265) | public function __construct($vals=null) {
method getName (line 2302) | public function getName() {
method read (line 2306) | public function read($input)
method write (line 2359) | public function write($output) {
class LazyMap (line 2389) | class LazyMap {
method __construct (line 2395) | public function __construct($vals=null) {
method getName (line 2430) | public function getName() {
method read (line 2434) | public function read($input)
method write (line 2500) | public function write($output) {
class ResourceAttributes (line 2549) | class ResourceAttributes {
method __construct (line 2565) | public function __construct($vals=null) {
method getName (line 2659) | public function getName() {
method read (line 2663) | public function read($input)
method write (line 2773) | public function write($output) {
class Resource (line 2846) | class Resource {
method __construct (line 2862) | public function __construct($vals=null) {
method getName (line 2959) | public function getName() {
method read (line 2963) | public function read($input)
method write (line 3076) | public function write($output) {
class NoteAttributes (line 3158) | class NoteAttributes {
method __construct (line 3181) | public function __construct($vals=null) {
method getName (line 3332) | public function getName() {
method read (line 3336) | public function read($input)
method write (line 3508) | public function write($output) {
class Note (line 3629) | class Note {
method __construct (line 3648) | public function __construct($vals=null) {
method getName (line 3776) | public function getName() {
method read (line 3780) | public function read($input)
method write (line 3942) | public function write($output) {
class Publishing (line 4066) | class Publishing {
method __construct (line 4074) | public function __construct($vals=null) {
method getName (line 4111) | public function getName() {
method read (line 4115) | public function read($input)
method write (line 4168) | public function write($output) {
class BusinessNotebook (line 4198) | class BusinessNotebook {
method __construct (line 4205) | public function __construct($vals=null) {
method getName (line 4235) | public function getName() {
method read (line 4239) | public function read($input)
method write (line 4285) | public function write($output) {
class SavedSearchScope (line 4310) | class SavedSearchScope {
method __construct (line 4317) | public function __construct($vals=null) {
method getName (line 4347) | public function getName() {
method read (line 4351) | public function read($input)
method write (line 4397) | public function write($output) {
class SavedSearch (line 4422) | class SavedSearch {
method __construct (line 4432) | public function __construct($vals=null) {
method getName (line 4484) | public function getName() {
method read (line 4488) | public function read($input)
method write (line 4556) | public function write($output) {
class SharedNotebookRecipientSettings (line 4599) | class SharedNotebookRecipientSettings {
method __construct (line 4605) | public function __construct($vals=null) {
method getName (line 4628) | public function getName() {
method read (line 4632) | public function read($input)
method write (line 4671) | public function write($output) {
class SharedNotebook (line 4691) | class SharedNotebook {
method __construct (line 4708) | public function __construct($vals=null) {
method getName (line 4809) | public function getName() {
method read (line 4813) | public function read($input)
method write (line 4930) | public function write($output) {
class NotebookRestrictions (line 5008) | class NotebookRestrictions {
method __construct (line 5032) | public function __construct($vals=null) {
method getName (line 5181) | public function getName() {
method read (line 5185) | public function read($input)
method write (line 5350) | public function write($output) {
class Notebook (line 5460) | class Notebook {
method __construct (line 5478) | public function __construct($vals=null) {
method getName (line 5598) | public function getName() {
method read (line 5602) | public function read($input)
method write (line 5750) | public function write($output) {
class LinkedNotebook (line 5866) | class LinkedNotebook {
method __construct (line 5881) | public function __construct($vals=null) {
method getName (line 5967) | public function getName() {
method read (line 5971) | public function read($input)
method write (line 6073) | public function write($output) {
class NotebookDescriptor (line 6138) | class NotebookDescriptor {
method __construct (line 6147) | public function __construct($vals=null) {
method getName (line 6191) | public function getName() {
method read (line 6195) | public function read($input)
method write (line 6255) | public function write($output) {
class Constant (line 6290) | final class Constant extends \Thrift\Type\TConstant {
method init_CLASSIFICATION_RECIPE_USER_NON_RECIPE (line 6298) | static protected function init_CLASSIFICATION_RECIPE_USER_NON_RECIPE() {
method init_CLASSIFICATION_RECIPE_USER_RECIPE (line 6302) | static protected function init_CLASSIFICATION_RECIPE_USER_RECIPE() {
method init_CLASSIFICATION_RECIPE_SERVICE_RECIPE (line 6306) | static protected function init_CLASSIFICATION_RECIPE_SERVICE_RECIPE() {
method init_EDAM_NOTE_SOURCE_WEB_CLIP (line 6310) | static protected function init_EDAM_NOTE_SOURCE_WEB_CLIP() {
method init_EDAM_NOTE_SOURCE_MAIL_CLIP (line 6314) | static protected function init_EDAM_NOTE_SOURCE_MAIL_CLIP() {
method init_EDAM_NOTE_SOURCE_MAIL_SMTP_GATEWAY (line 6318) | static protected function init_EDAM_NOTE_SOURCE_MAIL_SMTP_GATEWAY() {
FILE: src/EDAM/UserStore/Types.php
class PublicUserInfo (line 20) | class PublicUserInfo {
method __construct (line 30) | public function __construct($vals=null) {
method getName (line 81) | public function getName() {
method read (line 85) | public function read($input)
method write (line 152) | public function write($output) {
class AuthenticationResult (line 192) | class AuthenticationResult {
method __construct (line 205) | public function __construct($vals=null) {
method getName (line 279) | public function getName() {
method read (line 283) | public function read($input)
method write (line 373) | public function write($output) {
class BootstrapSettings (line 434) | class BootstrapSettings {
method __construct (line 451) | public function __construct($vals=null) {
method getName (line 551) | public function getName() {
method read (line 555) | public function read($input)
method write (line 671) | public function write($output) {
class BootstrapProfile (line 746) | class BootstrapProfile {
method __construct (line 752) | public function __construct($vals=null) {
method getName (line 776) | public function getName() {
method read (line 780) | public function read($input)
method write (line 820) | public function write($output) {
class BootstrapInfo (line 843) | class BootstrapInfo {
method __construct (line 848) | public function __construct($vals=null) {
method getName (line 869) | public function getName() {
method read (line 873) | public function read($input)
method write (line 916) | public function write($output) {
class Constant (line 943) | final class Constant extends \Thrift\Type\TConstant {
method init_EDAM_VERSION_MAJOR (line 947) | static protected function init_EDAM_VERSION_MAJOR() {
method init_EDAM_VERSION_MINOR (line 951) | static protected function init_EDAM_VERSION_MINOR() {
FILE: src/EDAM/UserStore/UserStore.php
type UserStoreIf (line 19) | interface UserStoreIf {
method checkVersion (line 20) | public function checkVersion($clientName, $edamVersionMajor, $edamVers...
method getBootstrapInfo (line 21) | public function getBootstrapInfo($locale);
method authenticate (line 22) | public function authenticate($username, $password, $consumerKey, $cons...
method authenticateLongSession (line 23) | public function authenticateLongSession($username, $password, $consume...
method completeTwoFactorAuthentication (line 24) | public function completeTwoFactorAuthentication($authenticationToken, ...
method revokeLongSession (line 25) | public function revokeLongSession($authenticationToken);
method authenticateToBusiness (line 26) | public function authenticateToBusiness($authenticationToken);
method refreshAuthentication (line 27) | public function refreshAuthentication($authenticationToken);
method getUser (line 28) | public function getUser($authenticationToken);
method getPublicUserInfo (line 29) | public function getPublicUserInfo($username);
method getPremiumInfo (line 30) | public function getPremiumInfo($authenticationToken);
method getNoteStoreUrl (line 31) | public function getNoteStoreUrl($authenticationToken);
class UserStoreClient (line 34) | class UserStoreClient implements \EDAM\UserStore\UserStoreIf {
method __construct (line 40) | public function __construct($input, $output=null) {
method checkVersion (line 45) | public function checkVersion($clientName, $edamVersionMajor, $edamVers...
method send_checkVersion (line 51) | public function send_checkVersion($clientName, $edamVersionMajor, $eda...
method recv_checkVersion (line 71) | public function recv_checkVersion()
method getBootstrapInfo (line 98) | public function getBootstrapInfo($locale)
method send_getBootstrapInfo (line 104) | public function send_getBootstrapInfo($locale)
method recv_getBootstrapInfo (line 122) | public function recv_getBootstrapInfo()
method authenticate (line 149) | public function authenticate($username, $password, $consumerKey, $cons...
method send_authenticate (line 155) | public function send_authenticate($username, $password, $consumerKey, ...
method recv_authenticate (line 177) | public function recv_authenticate()
method authenticateLongSession (line 210) | public function authenticateLongSession($username, $password, $consume...
method send_authenticateLongSession (line 216) | public function send_authenticateLongSession($username, $password, $co...
method recv_authenticateLongSession (line 240) | public function recv_authenticateLongSession()
method completeTwoFactorAuthentication (line 273) | public function completeTwoFactorAuthentication($authenticationToken, ...
method send_completeTwoFactorAuthentication (line 279) | public function send_completeTwoFactorAuthentication($authenticationTo...
method recv_completeTwoFactorAuthentication (line 300) | public function recv_completeTwoFactorAuthentication()
method revokeLongSession (line 333) | public function revokeLongSession($authenticationToken)
method send_revokeLongSession (line 339) | public function send_revokeLongSession($authenticationToken)
method recv_revokeLongSession (line 357) | public function recv_revokeLongSession()
method authenticateToBusiness (line 387) | public function authenticateToBusiness($authenticationToken)
method send_authenticateToBusiness (line 393) | public function send_authenticateToBusiness($authenticationToken)
method recv_authenticateToBusiness (line 411) | public function recv_authenticateToBusiness()
method refreshAuthentication (line 444) | public function refreshAuthentication($authenticationToken)
method send_refreshAuthentication (line 450) | public function send_refreshAuthentication($authenticationToken)
method recv_refreshAuthentication (line 468) | public function recv_refreshAuthentication()
method getUser (line 501) | public function getUser($authenticationToken)
method send_getUser (line 507) | public function send_getUser($authenticationToken)
method recv_getUser (line 525) | public function recv_getUser()
method getPublicUserInfo (line 558) | public function getPublicUserInfo($username)
method send_getPublicUserInfo (line 564) | public function send_getPublicUserInfo($username)
method recv_getPublicUserInfo (line 582) | public function recv_getPublicUserInfo()
method getPremiumInfo (line 618) | public function getPremiumInfo($authenticationToken)
method send_getPremiumInfo (line 624) | public function send_getPremiumInfo($authenticationToken)
method recv_getPremiumInfo (line 642) | public function recv_getPremiumInfo()
method getNoteStoreUrl (line 675) | public function getNoteStoreUrl($authenticationToken)
method send_getNoteStoreUrl (line 681) | public function send_getNoteStoreUrl($authenticationToken)
method recv_getNoteStoreUrl (line 699) | public function recv_getNoteStoreUrl()
class UserStore_checkVersion_args (line 736) | class UserStore_checkVersion_args {
method __construct (line 743) | public function __construct($vals=null) {
method getName (line 773) | public function getName() {
method read (line 777) | public function read($input)
method write (line 823) | public function write($output) {
class UserStore_checkVersion_result (line 848) | class UserStore_checkVersion_result {
method __construct (line 853) | public function __construct($vals=null) {
method getName (line 869) | public function getName() {
method read (line 873) | public function read($input)
method write (line 905) | public function write($output) {
class UserStore_getBootstrapInfo_args (line 920) | class UserStore_getBootstrapInfo_args {
method __construct (line 925) | public function __construct($vals=null) {
method getName (line 941) | public function getName() {
method read (line 945) | public function read($input)
method write (line 977) | public function write($output) {
class UserStore_getBootstrapInfo_result (line 992) | class UserStore_getBootstrapInfo_result {
method __construct (line 997) | public function __construct($vals=null) {
method getName (line 1014) | public function getName() {
method read (line 1018) | public function read($input)
method write (line 1051) | public function write($output) {
class UserStore_authenticate_args (line 1069) | class UserStore_authenticate_args {
method __construct (line 1078) | public function __construct($vals=null) {
method getName (line 1122) | public function getName() {
method read (line 1126) | public function read($input)
method write (line 1186) | public function write($output) {
class UserStore_authenticate_result (line 1221) | class UserStore_authenticate_result {
method __construct (line 1228) | public function __construct($vals=null) {
method getName (line 1261) | public function getName() {
method read (line 1265) | public function read($input)
method write (line 1314) | public function write($output) {
class UserStore_authenticateLongSession_args (line 1342) | class UserStore_authenticateLongSession_args {
method __construct (line 1353) | public function __construct($vals=null) {
method getName (line 1411) | public function getName() {
method read (line 1415) | public function read($input)
method write (line 1489) | public function write($output) {
class UserStore_authenticateLongSession_result (line 1534) | class UserStore_authenticateLongSession_result {
method __construct (line 1541) | public function __construct($vals=null) {
method getName (line 1574) | public function getName() {
method read (line 1578) | public function read($input)
method write (line 1627) | public function write($output) {
class UserStore_completeTwoFactorAuthentication_args (line 1655) | class UserStore_completeTwoFactorAuthentication_args {
method __construct (line 1663) | public function __construct($vals=null) {
method getName (line 1700) | public function getName() {
method read (line 1704) | public function read($input)
method write (line 1757) | public function write($output) {
class UserStore_completeTwoFactorAuthentication_result (line 1787) | class UserStore_completeTwoFactorAuthentication_result {
method __construct (line 1794) | public function __construct($vals=null) {
method getName (line 1827) | public function getName() {
method read (line 1831) | public function read($input)
method write (line 1880) | public function write($output) {
class UserStore_revokeLongSession_args (line 1908) | class UserStore_revokeLongSession_args {
method __construct (line 1913) | public function __construct($vals=null) {
method getName (line 1929) | public function getName() {
method read (line 1933) | public function read($input)
method write (line 1965) | public function write($output) {
class UserStore_revokeLongSession_result (line 1980) | class UserStore_revokeLongSession_result {
method __construct (line 1986) | public function __construct($vals=null) {
method getName (line 2011) | public function getName() {
method read (line 2015) | public function read($input)
method write (line 2056) | public function write($output) {
class UserStore_authenticateToBusiness_args (line 2076) | class UserStore_authenticateToBusiness_args {
method __construct (line 2081) | public function __construct($vals=null) {
method getName (line 2097) | public function getName() {
method read (line 2101) | public function read($input)
method write (line 2133) | public function write($output) {
class UserStore_authenticateToBusiness_result (line 2148) | class UserStore_authenticateToBusiness_result {
method __construct (line 2155) | public function __construct($vals=null) {
method getName (line 2188) | public function getName() {
method read (line 2192) | public function read($input)
method write (line 2241) | public function write($output) {
class UserStore_refreshAuthentication_args (line 2269) | class UserStore_refreshAuthentication_args {
method __construct (line 2274) | public function __construct($vals=null) {
method getName (line 2290) | public function getName() {
method read (line 2294) | public function read($input)
method write (line 2326) | public function write($output) {
class UserStore_refreshAuthentication_result (line 2341) | class UserStore_refreshAuthentication_result {
method __construct (line 2348) | public function __construct($vals=null) {
method getName (line 2381) | public function getName() {
method read (line 2385) | public function read($input)
method write (line 2434) | public function write($output) {
class UserStore_getUser_args (line 2462) | class UserStore_getUser_args {
method __construct (line 2467) | public function __construct($vals=null) {
method getName (line 2483) | public function getName() {
method read (line 2487) | public function read($input)
method write (line 2519) | public function write($output) {
class UserStore_getUser_result (line 2534) | class UserStore_getUser_result {
method __construct (line 2541) | public function __construct($vals=null) {
method getName (line 2574) | public function getName() {
method read (line 2578) | public function read($input)
method write (line 2627) | public function write($output) {
class UserStore_getPublicUserInfo_args (line 2655) | class UserStore_getPublicUserInfo_args {
method __construct (line 2660) | public function __construct($vals=null) {
method getName (line 2676) | public function getName() {
method read (line 2680) | public function read($input)
method write (line 2712) | public function write($output) {
class UserStore_getPublicUserInfo_result (line 2727) | class UserStore_getPublicUserInfo_result {
method __construct (line 2735) | public function __construct($vals=null) {
method getName (line 2776) | public function getName() {
method read (line 2780) | public function read($input)
method write (line 2837) | public function write($output) {
class UserStore_getPremiumInfo_args (line 2870) | class UserStore_getPremiumInfo_args {
method __construct (line 2875) | public function __construct($vals=null) {
method getName (line 2891) | public function getName() {
method read (line 2895) | public function read($input)
method write (line 2927) | public function write($output) {
class UserStore_getPremiumInfo_result (line 2942) | class UserStore_getPremiumInfo_result {
method __construct (line 2949) | public function __construct($vals=null) {
method getName (line 2982) | public function getName() {
method read (line 2986) | public function read($input)
method write (line 3035) | public function write($output) {
class UserStore_getNoteStoreUrl_args (line 3063) | class UserStore_getNoteStoreUrl_args {
method __construct (line 3068) | public function __construct($vals=null) {
method getName (line 3084) | public function getName() {
method read (line 3088) | public function read($input)
method write (line 3120) | public function write($output) {
class UserStore_getNoteStoreUrl_result (line 3135) | class UserStore_getNoteStoreUrl_result {
method __construct (line 3142) | public function __construct($vals=null) {
method getName (line 3174) | public function getName() {
method read (line 3178) | public function read($input)
method write (line 3226) | public function write($output) {
FILE: src/Evernote/AdvancedClient.php
class AdvancedClient (line 10) | class AdvancedClient
method __construct (line 41) | public function __construct($token, $sandbox = true, $thriftClientFact...
method getUserStore (line 53) | public function getUserStore()
method getNoteStore (line 66) | public function getNoteStore($noteStoreUrl = null, $token = null)
method getSharedNoteStore (line 80) | public function getSharedNoteStore($linkedNotebook)
method getBusinessNoteStore (line 90) | public function getBusinessNoteStore()
method getEndpoint (line 101) | public function getEndpoint($path = null)
method getThriftClientFactory (line 121) | public function getThriftClientFactory()
method getStoreInstance (line 128) | public function getStoreInstance($token, $type, $url)
FILE: src/Evernote/Auth/OauthHandler.php
class OauthHandler (line 7) | class OauthHandler
method __construct (line 21) | public function __construct($sandbox = true, $supportLinkedSandbox = f...
method authorize (line 40) | public function authorize($consumer_key, $consumer_secret, $callback)
method getBaseUrl (line 86) | protected function getBaseUrl($prefix = '')
method getTemporaryCredentials (line 101) | protected function getTemporaryCredentials()
method getResponseBody (line 132) | protected function getResponseBody($raw)
method getOauthNonce (line 142) | protected function getOauthNonce()
method getOauthTimestamp (line 147) | protected function getOauthTimestamp()
method getOauthSignature (line 152) | protected function getOauthSignature()
method getSignatureBaseString (line 169) | protected function getSignatureBaseString()
method formatParametersString (line 181) | protected function formatParametersString($params, $glue, $enclosure =...
method getAuthorizationHeaderString (line 191) | protected function getAuthorizationHeaderString()
method getSignatureKey (line 199) | protected function getSignatureKey()
method formatHeaders (line 204) | protected function formatHeaders($headers)
FILE: src/Evernote/Client.php
class Client (line 21) | class Client
method __construct (line 151) | public function __construct($token = null, $sandbox = true, $advancedC...
method isBusinessUser (line 166) | public function isBusinessUser()
method getBusinessToken (line 187) | public function getBusinessToken()
method getBusinessNoteStore (line 201) | public function getBusinessNoteStore()
method getBusinessSharedNotebooks (line 215) | public function getBusinessSharedNotebooks()
method getBusinessLinkedNotebooks (line 225) | public function getBusinessLinkedNotebooks()
method listNotebooks (line 235) | public function listNotebooks()
method listPersonalNotebooks (line 355) | public function listPersonalNotebooks()
method listSharedNotebooks (line 367) | public function listSharedNotebooks()
method listLinkedNotebooks (line 377) | public function listLinkedNotebooks()
method getUserNotestore (line 388) | public function getUserNotestore()
method replaceNote (line 404) | public function replaceNote(Note $noteToReplace, Note $note)
method uploadNote (line 433) | public function uploadNote(Note $note, Notebook $notebook = null)
method deleteNote (line 499) | public function deleteNote(Note $note)
method shareNote (line 540) | public function shareNote(Note $note)
method moveNote (line 584) | public function moveNote(Note $note, Notebook $notebook)
method getNote (line 628) | public function getNote($guid, $scope = null)
method isAppNotebookToken (line 680) | public function isAppNotebookToken($token)
method getNotebook (line 692) | public function getNotebook($notebook_guid, $scope = null)
method findNotesWithSearch (line 738) | public function findNotesWithSearch($noteSearch, Notebook $notebook = ...
method setAdvancedClient (line 839) | public function setAdvancedClient($advancedClient)
method getAdvancedClient (line 849) | public function getAdvancedClient()
method setSandbox (line 863) | public function setSandbox($sandbox)
method getSandbox (line 873) | public function getSandbox()
method setChina (line 883) | public function setChina($china)
method getChina (line 893) | public function getChina()
method setToken (line 903) | public function setToken($token)
method getToken (line 913) | public function getToken()
method getNoteStore (line 924) | protected function getNoteStore($noteStoreUrl)
method getShareUrl (line 929) | protected function getShareUrl($guid, $shardId, $shareKey, $serviceHost)
method getSharedNotebookAuthResult (line 934) | protected function getSharedNotebookAuthResult(LinkedNotebook $linkedN...
method getNoteBookByLinkedNotebook (line 940) | protected function getNoteBookByLinkedNotebook(LinkedNotebook $linkedN...
method getBusinessAuth (line 958) | protected function getBusinessAuth()
method getNoteInstance (line 973) | protected function getNoteInstance(\EDAM\Types\Note $edamNote = null, ...
method getShardIdFromToken (line 984) | protected function getShardIdFromToken($token)
method isFlagSet (line 995) | protected function isFlagSet($flags, $flag)
method findNotes_listNotebooksWithContext (line 1000) | protected function findNotes_listNotebooksWithContext($context)
method findNotes_findInPersonalScopeWithContext (line 1017) | protected function findNotes_findInPersonalScopeWithContext($context)
method findNotes_findInBusinessScopeWithContext (line 1058) | protected function findNotes_findInBusinessScopeWithContext($context)
method findNotes_findInLinkedScopeWithContext (line 1095) | protected function findNotes_findInLinkedScopeWithContext($context)
method findNotes_nextFindInLinkedScopeWithContext (line 1123) | protected function findNotes_nextFindInLinkedScopeWithContext($context)
method compareByTitle (line 1155) | protected function compareByTitle($obj1, $obj2)
method compareByCreated (line 1160) | protected function compareByCreated($obj1, $obj2)
method compareByUpdated (line 1165) | protected function compareByUpdated($obj1, $obj2)
method findNotes_processResultsWithContext (line 1170) | protected function findNotes_processResultsWithContext($context)
FILE: src/Evernote/Enml/CSSInliner/CssInlinerInterface.php
type CssInlinerInterface (line 5) | interface CssInlinerInterface
method convert (line 7) | public function convert($html, $css);
FILE: src/Evernote/Enml/CSSInliner/CssToInlineStyles.php
class CssToInlineStyles (line 5) | class CssToInlineStyles implements CssInlinerInterface
method __construct (line 9) | public function __construct()
method convert (line 14) | public function convert($html, $css)
FILE: src/Evernote/Enml/Converter/EnmlConverterInterface.php
type EnmlConverterInterface (line 5) | interface EnmlConverterInterface
method convertToEnml (line 7) | public function convertToEnml($content);
FILE: src/Evernote/Enml/Converter/EnmlToHtmlConverter.php
class EnmlToHtmlConverter (line 5) | class EnmlToHtmlConverter implements HtmlConverterInterface
method convertToHtml (line 7) | public function convertToHtml($content)
method xslTransform (line 12) | public function xslTransform($enml, $xsl_file)
FILE: src/Evernote/Enml/Converter/HtmlConverterInterface.php
type HtmlConverterInterface (line 5) | interface HtmlConverterInterface
method convertToHtml (line 7) | public function convertToHtml($content);
FILE: src/Evernote/Enml/Converter/HtmlToEnmlConverter.php
class HtmlToEnmlConverter (line 10) | class HtmlToEnmlConverter implements EnmlConverterInterface
method __construct (line 17) | public function __construct(HtmlCleanerInterface $html_cleaner = null,...
method convertToEnml (line 31) | public function convertToEnml($content, $base_url = null)
method extractUrls (line 62) | public function extractUrls($html)
method isUrlValid (line 77) | public function isUrlValid($url)
method xslTransform (line 86) | public function xslTransform($xhtml, $xsl_file)
method cleanHtml (line 100) | public function cleanHtml($html)
method inlineCss (line 115) | public function inlineCss($html, $css)
method convertRelativeToAbsoluteUrls (line 120) | public function convertRelativeToAbsoluteUrls($html)
method validateEnml (line 125) | public function validateEnml($enml, $dtd)
method getHtmlCleaner (line 130) | public function getHtmlCleaner()
method getCssInliner (line 135) | public function getCssInliner()
method extractCssFromHtml (line 140) | public function extractCssFromHtml($html)
FILE: src/Evernote/Enml/Converter/PlainTextToEnmlConverter.php
class PlainTextToEnmlConverter (line 5) | class PlainTextToEnmlConverter implements EnmlConverterInterface
method convertToEnml (line 7) | public function convertToEnml($content)
FILE: src/Evernote/Enml/HtmlCleaner/HtmlCleanerInterface.php
type HtmlCleanerInterface (line 5) | interface HtmlCleanerInterface
method clean (line 7) | public function clean($html);
FILE: src/Evernote/Enml/HtmlCleaner/HtmlPurifier.php
class HtmlPurifier (line 5) | class HtmlPurifier implements HtmlCleanerInterface
method __construct (line 11) | public function __construct(\HTMLPurifier_Config $config = null)
method clean (line 20) | public function clean($html)
FILE: src/Evernote/Exception/AuthExpiredException.php
class AuthExpiredException (line 5) | class AuthExpiredException extends \Exception
FILE: src/Evernote/Exception/AuthorizationDeniedException.php
class AuthorizationDeniedException (line 5) | class AuthorizationDeniedException extends \Exception
FILE: src/Evernote/Exception/BadDataFormatException.php
class BadDataFormatException (line 5) | class BadDataFormatException extends \Exception
FILE: src/Evernote/Exception/DataConflictException.php
class DataConflictException (line 5) | class DataConflictException extends \Exception
FILE: src/Evernote/Exception/DataRequiredException.php
class DataRequiredException (line 5) | class DataRequiredException extends \Exception
FILE: src/Evernote/Exception/EnmlValidationException.php
class EnmlValidationException (line 5) | class EnmlValidationException extends \Exception
FILE: src/Evernote/Exception/ExceptionFactory.php
class ExceptionFactory (line 9) | class ExceptionFactory
method create (line 44) | public static function create(\Exception $e)
FILE: src/Evernote/Exception/InternalErrorException.php
class InternalErrorException (line 5) | class InternalErrorException extends \Exception
FILE: src/Evernote/Exception/InvalidAuthException.php
class InvalidAuthException (line 5) | class InvalidAuthException extends \Exception
FILE: src/Evernote/Exception/LengthTooLongException.php
class LengthTooLongException (line 5) | class LengthTooLongException extends \Exception
FILE: src/Evernote/Exception/LengthTooShortException.php
class LengthTooShortException (line 5) | class LengthTooShortException extends \Exception
FILE: src/Evernote/Exception/LimitReachedException.php
class LimitReachedException (line 5) | class LimitReachedException extends \Exception
FILE: src/Evernote/Exception/NotFoundNoteException.php
class NotFoundNoteException (line 5) | class NotFoundNoteException extends \Exception
FILE: src/Evernote/Exception/NotFoundNotebookException.php
class NotFoundNotebookException (line 5) | class NotFoundNotebookException extends \Exception
FILE: src/Evernote/Exception/NotFoundSharedNotebookException.php
class NotFoundSharedNotebookException (line 5) | class NotFoundSharedNotebookException extends \Exception
FILE: src/Evernote/Exception/PermissionDeniedException.php
class PermissionDeniedException (line 5) | class PermissionDeniedException extends \Exception
FILE: src/Evernote/Exception/QuotaReachedException.php
class QuotaReachedException (line 5) | class QuotaReachedException extends \Exception
FILE: src/Evernote/Exception/RateLimitReachedException.php
class RateLimitReachedException (line 5) | class RateLimitReachedException extends \Exception
FILE: src/Evernote/Exception/ShardUnavailableException.php
class ShardUnavailableException (line 5) | class ShardUnavailableException extends \Exception
FILE: src/Evernote/Exception/TakenDownException.php
class TakenDownException (line 5) | class TakenDownException extends \Exception
FILE: src/Evernote/Exception/TooFewException.php
class TooFewException (line 5) | class TooFewException extends \Exception
FILE: src/Evernote/Exception/TooManyException.php
class TooManyException (line 5) | class TooManyException extends \Exception
FILE: src/Evernote/Exception/UnknownException.php
class UnknownException (line 5) | class UnknownException extends \Exception
FILE: src/Evernote/Exception/UnsupportedOperationException.php
class UnsupportedOperationException (line 5) | class UnsupportedOperationException extends \Exception
FILE: src/Evernote/Factory/ThriftClientFactory.php
class ThriftClientFactory (line 8) | class ThriftClientFactory
method __construct (line 12) | public function __construct()
method createThriftClient (line 17) | public function createThriftClient($type, $url)
FILE: src/Evernote/File/File.php
class File (line 5) | class File extends \SplFileObject implements FileInterface
method __construct (line 20) | public function __construct($path, $mime_type = null, $width = null, $...
method getContent (line 37) | public function getContent()
method getMimeType (line 48) | public function getMimeType()
method getHeight (line 56) | public function getHeight()
method getWidth (line 64) | public function getWidth()
method findMimeType (line 74) | private function findMimeType($path)
FILE: src/Evernote/File/FileInterface.php
type FileInterface (line 5) | interface FileInterface
method getMimeType (line 7) | public function getMimeType();
method getFilename (line 8) | public function getFilename();
method getContent (line 9) | public function getContent();
FILE: src/Evernote/Model/EnmlNoteContent.php
class EnmlNoteContent (line 8) | class EnmlNoteContent extends NoteContent implements NoteContentInterface
method __construct (line 12) | public function __construct($content, HtmlConverterInterface $htmlConv...
method getEnmlConverter (line 26) | public function getEnmlConverter()
method getHtmlConverter (line 31) | public function getHtmlConverter()
method toEnml (line 40) | public function toEnml()
method __toString (line 45) | public function __toString()
method toHtml (line 50) | public function toHtml()
method hasXmlDeclaration (line 60) | protected function hasXmlDeclaration($content)
method hasDoctypeDeclaration (line 65) | protected function hasDoctypeDeclaration($content)
method addXmlDeclaration (line 70) | protected function addXmlDeclaration($content)
method addDoctypeDeclaration (line 79) | protected function addDoctypeDeclaration($content)
FILE: src/Evernote/Model/HtmlNoteContent.php
class HtmlNoteContent (line 7) | class HtmlNoteContent extends NoteContent implements NoteContentInterface
method getEnmlConverter (line 11) | public function getEnmlConverter()
method toEnml (line 20) | public function toEnml()
method setBaseUrl (line 25) | public function setBaseUrl($base_url)
FILE: src/Evernote/Model/Note.php
class Note (line 10) | class Note
method __construct (line 48) | public function __construct(\EDAM\Types\Note $edamNote = null)
method __set (line 65) | public function __set($name, $value)
method __get (line 75) | public function __get($name)
method setContent (line 85) | public function setContent($content)
method validateForLimits (line 96) | public function validateForLimits()
method setTitle (line 110) | public function setTitle($title)
method getTitle (line 118) | public function getTitle()
method getContent (line 126) | public function getContent()
method getEdamNote (line 134) | public function getEdamNote()
method getGuid (line 142) | public function getGuid()
method setGuid (line 147) | public function setGuid($guid)
method getAttribute (line 152) | public function getAttribute($attribute)
method setAttribute (line 161) | public function setAttribute($attribute, $value)
method getCreated (line 166) | public function getCreated()
method setCreated (line 171) | public function setCreated($value)
method getAttributes (line 176) | public function getAttributes()
method isReminder (line 181) | public function isReminder()
method setReminder (line 186) | public function setReminder($timestamp = null)
method clearReminder (line 192) | public function clearReminder()
method setAsDone (line 199) | public function setAsDone()
method isDone (line 204) | public function isDone()
method getReminderTime (line 209) | public function getReminderTime()
method getReminderDoneTime (line 220) | public function getReminderDoneTime()
method addResource (line 231) | public function addResource(Resource $resource)
method getResources (line 236) | public function getResources()
method getSaved (line 241) | public function getSaved()
method setSaved (line 246) | public function setSaved($value)
method getNotebookGuid (line 251) | public function getNotebookGuid()
method getAuthToken (line 256) | public function getAuthToken()
method setAuthToken (line 261) | public function setAuthToken($authToken)
method setTagNames (line 266) | public function setTagNames(array $tagNames)
method getTagNames (line 271) | public function getTagNames()
method setNoteStore (line 279) | public function setNoteStore($noteStore)
method getNoteStore (line 287) | public function getNoteStore()
FILE: src/Evernote/Model/NoteContent.php
class NoteContent (line 7) | abstract class NoteContent
method __construct (line 15) | public function __construct($content, EnmlConverterInterface $enmlConv...
FILE: src/Evernote/Model/NoteContentInterface.php
type NoteContentInterface (line 5) | interface NoteContentInterface
method toEnml (line 7) | public function toEnml();
method getEnmlConverter (line 9) | public function getEnmlConverter();
FILE: src/Evernote/Model/Notebook.php
class Notebook (line 5) | class Notebook
method __construct (line 47) | public function __construct($notebook = null, $linkedNotebook = null, ...
method __get (line 55) | public function __get($name)
method __set (line 65) | public function __set($name, $value)
method getEdamNotebook (line 75) | public function getEdamNotebook()
method getName (line 80) | public function getName()
method isBusinessNotebook (line 93) | public function isBusinessNotebook()
method isLinkedNotebook (line 98) | public function isLinkedNotebook()
method isPublic (line 103) | public function isPublic()
method isDefaultNotebook (line 108) | public function isDefaultNotebook()
method getGuid (line 113) | public function getGuid()
method setGuid (line 126) | public function setGuid($guid)
method getLinkedNotebook (line 131) | public function getLinkedNotebook()
method getAuthToken (line 136) | public function getAuthToken()
method setAuthToken (line 141) | public function setAuthToken($authToken)
FILE: src/Evernote/Model/PlainTextNoteContent.php
class PlainTextNoteContent (line 7) | class PlainTextNoteContent extends NoteContent implements NoteContentInt...
method getEnmlConverter (line 9) | public function getEnmlConverter()
method toEnml (line 18) | public function toEnml()
FILE: src/Evernote/Model/Resource.php
class Resource (line 10) | class Resource
method __construct (line 24) | public function __construct($file, $mime = null, $width = null, $heigh...
method __get (line 51) | public function __get($property)
method getEnmlMediaTag (line 58) | public function getEnmlMediaTag()
FILE: src/Evernote/Model/Search.php
class Search (line 5) | class Search
method __construct (line 9) | public function __construct($searchString)
method getSearchString (line 17) | public function getSearchString()
FILE: src/Evernote/Model/SearchResult.php
class SearchResult (line 5) | class SearchResult
FILE: src/Evernote/Store/Store.php
class Store (line 7) | class Store
method __construct (line 15) | public function __construct($thriftClientFactory, $token, $type, $url)
method __call (line 23) | public function __call($name, $arguments)
method getToken (line 59) | public function getToken()
method setToken (line 67) | public function setToken($token)
method getThriftClient (line 77) | protected function getThriftClient()
method getThriftClientFactory (line 85) | public function getThriftClientFactory()
FILE: src/Thrift/Base/TBase.php
class TBase (line 34) | abstract class TBase {
method read (line 44) | abstract function read($input);
method write (line 46) | abstract function write($output);
method __construct (line 48) | public function __construct($spec=null, $vals=null) {
method __wakeup (line 59) | public function __wakeup()
method _readMap (line 64) | private function _readMap(&$var, $spec, $input) {
method _readList (line 130) | private function _readList(&$var, $spec, $input, $set=false) {
method _read (line 183) | protected function _read($class, $spec, $input) {
method _writeMap (line 232) | private function _writeMap($var, $spec, $output) {
method _writeList (line 290) | private function _writeList($var, $spec, $output, $set=false) {
method _write (line 333) | protected function _write($class, $spec, $output) {
FILE: src/Thrift/ClassLoader/ThriftClassLoader.php
class ThriftClassLoader (line 28) | class ThriftClassLoader
method __construct (line 59) | public function __construct($apc = false, $apc_prefix = null)
method registerNamespace (line 71) | public function registerNamespace($namespace, $paths)
method registerDefinition (line 82) | public function registerDefinition($namespace, $paths)
method register (line 92) | public function register($prepend = false)
method loadClass (line 102) | public function loadClass($class)
method findFileInApc (line 118) | protected function findFileInApc($class)
method findFile (line 132) | public function findFile($class)
FILE: src/Thrift/Exception/TApplicationException.php
class TApplicationException (line 28) | class TApplicationException extends TException {
method __construct (line 47) | function __construct($message=null, $code=0) {
method read (line 51) | public function read($output) {
method write (line 55) | public function write($output) {
FILE: src/Thrift/Exception/TException.php
class TException (line 41) | class TException extends \Exception {
method __construct (line 42) | function __construct($p1=null, $p2=0) {
method _readMap (line 65) | private function _readMap(&$var, $spec, $input) {
method _readList (line 131) | private function _readList(&$var, $spec, $input, $set=false) {
method _read (line 184) | protected function _read($class, $spec, $input) {
method _writeMap (line 233) | private function _writeMap($var, $spec, $output) {
method _writeList (line 291) | private function _writeList($var, $spec, $output, $set=false) {
method _write (line 334) | protected function _write($class, $spec, $output) {
FILE: src/Thrift/Exception/TProtocolException.php
class TProtocolException (line 38) | class TProtocolException extends TException {
method __construct (line 45) | function __construct($message=null, $code=0) {
FILE: src/Thrift/Exception/TTransportException.php
class TTransportException (line 30) | class TTransportException extends TException {
method __construct (line 38) | function __construct($message=null, $code=0) {
FILE: src/Thrift/Factory/TBinaryProtocolFactory.php
class TBinaryProtocolFactory (line 31) | class TBinaryProtocolFactory implements TProtocolFactory {
method __construct (line 35) | public function __construct($strictRead=false, $strictWrite=false) {
method getProtocol (line 40) | public function getProtocol($trans) {
FILE: src/Thrift/Factory/TCompactProtocolFactory.php
class TCompactProtocolFactory (line 31) | class TCompactProtocolFactory implements TProtocolFactory {
method __construct (line 33) | public function __construct() {
method getProtocol (line 36) | public function getProtocol($trans) {
FILE: src/Thrift/Factory/TJSONProtocolFactory.php
class TJSONProtocolFactory (line 31) | class TJSONProtocolFactory implements TProtocolFactory
method __construct (line 33) | public function __construct()
method getProtocol (line 37) | public function getProtocol($trans)
FILE: src/Thrift/Factory/TProtocolFactory.php
type TProtocolFactory (line 28) | interface TProtocolFactory {
method getProtocol (line 34) | public function getProtocol($trans);
FILE: src/Thrift/Factory/TStringFuncFactory.php
class TStringFuncFactory (line 27) | class TStringFuncFactory {
method create (line 36) | public static function create() {
method _setInstance (line 44) | private static function _setInstance() {
FILE: src/Thrift/Factory/TTransportFactory.php
class TTransportFactory (line 7) | class TTransportFactory {
method getTransport (line 13) | public static function getTransport(TTransport $transport) {
FILE: src/Thrift/Protocol/JSON/BaseContext.php
class BaseContext (line 25) | class BaseContext
method escapeNum (line 27) | function escapeNum()
method write (line 32) | function write()
method read (line 36) | function read()
FILE: src/Thrift/Protocol/JSON/ListContext.php
class ListContext (line 28) | class ListContext extends BaseContext
method __construct (line 33) | public function __construct($p) {
method write (line 37) | public function write() {
method read (line 45) | public function read() {
FILE: src/Thrift/Protocol/JSON/LookaheadReader.php
class LookaheadReader (line 25) | class LookaheadReader
method __construct (line 31) | public function __construct($p)
method read (line 36) | public function read() {
method peek (line 46) | public function peek() {
FILE: src/Thrift/Protocol/JSON/PairContext.php
class PairContext (line 28) | class PairContext extends BaseContext {
method __construct (line 33) | public function __construct($p) {
method write (line 37) | public function write() {
method read (line 47) | public function read() {
method escapeNum (line 57) | public function escapeNum() {
FILE: src/Thrift/Protocol/TBinaryProtocol.php
class TBinaryProtocol (line 34) | class TBinaryProtocol extends TProtocol {
method __construct (line 42) | public function __construct($trans, $strictRead=false, $strictWrite=tr...
method writeMessageBegin (line 48) | public function writeMessageBegin($name, $type, $seqid) {
method writeMessageEnd (line 63) | public function writeMessageEnd() {
method writeStructBegin (line 67) | public function writeStructBegin($name) {
method writeStructEnd (line 71) | public function writeStructEnd() {
method writeFieldBegin (line 75) | public function writeFieldBegin($fieldName, $fieldType, $fieldId) {
method writeFieldEnd (line 81) | public function writeFieldEnd() {
method writeFieldStop (line 85) | public function writeFieldStop() {
method writeMapBegin (line 90) | public function writeMapBegin($keyType, $valType, $size) {
method writeMapEnd (line 97) | public function writeMapEnd() {
method writeListBegin (line 101) | public function writeListBegin($elemType, $size) {
method writeListEnd (line 107) | public function writeListEnd() {
method writeSetBegin (line 111) | public function writeSetBegin($elemType, $size) {
method writeSetEnd (line 117) | public function writeSetEnd() {
method writeBool (line 121) | public function writeBool($value) {
method writeByte (line 127) | public function writeByte($value) {
method writeI16 (line 133) | public function writeI16($value) {
method writeI32 (line 139) | public function writeI32($value) {
method writeI64 (line 145) | public function writeI64($value) {
method writeDouble (line 181) | public function writeDouble($value) {
method writeString (line 187) | public function writeString($value) {
method readMessageBegin (line 196) | public function readMessageBegin(&$name, &$type, &$seqid) {
method readMessageEnd (line 222) | public function readMessageEnd() {
method readStructBegin (line 226) | public function readStructBegin(&$name) {
method readStructEnd (line 231) | public function readStructEnd() {
method readFieldBegin (line 235) | public function readFieldBegin(&$name, &$fieldType, &$fieldId) {
method readFieldEnd (line 245) | public function readFieldEnd() {
method readMapBegin (line 249) | public function readMapBegin(&$keyType, &$valType, &$size) {
method readMapEnd (line 256) | public function readMapEnd() {
method readListBegin (line 260) | public function readListBegin(&$elemType, &$size) {
method readListEnd (line 266) | public function readListEnd() {
method readSetBegin (line 270) | public function readSetBegin(&$elemType, &$size) {
method readSetEnd (line 276) | public function readSetEnd() {
method readBool (line 280) | public function readBool(&$value) {
method readByte (line 287) | public function readByte(&$value) {
method readI16 (line 294) | public function readI16(&$value) {
method readI32 (line 304) | public function readI32(&$value) {
method readI64 (line 314) | public function readI64(&$value) {
method readDouble (line 380) | public function readDouble(&$value) {
method readString (line 387) | public function readString(&$value) {
FILE: src/Thrift/Protocol/TBinaryProtocolAccelerated.php
class TBinaryProtocolAccelerated (line 32) | class TBinaryProtocolAccelerated extends TBinaryProtocol {
method __construct (line 33) | public function __construct($trans, $strictRead=false, $strictWrite=tr...
method isStrictRead (line 41) | public function isStrictRead() {
method isStrictWrite (line 44) | public function isStrictWrite() {
FILE: src/Thrift/Protocol/TCompactProtocol.php
class TCompactProtocol (line 34) | class TCompactProtocol extends TProtocol {
method toZigZag (line 105) | public function toZigZag($n, $bits) {
method fromZigZag (line 109) | public function fromZigZag($n) {
method getVarint (line 113) | public function getVarint($data) {
method writeVarint (line 127) | public function writeVarint($data) {
method readVarint (line 134) | public function readVarint(&$result) {
method __construct (line 153) | public function __construct($trans) {
method writeMessageBegin (line 157) | public function writeMessageBegin($name, $type, $seqid) {
method writeMessageEnd (line 168) | public function writeMessageEnd() {
method writeStructBegin (line 173) | public function writeStructBegin($name) {
method writeStructEnd (line 180) | public function writeStructEnd() {
method writeFieldStop (line 187) | public function writeFieldStop() {
method writeFieldHeader (line 191) | public function writeFieldHeader($type, $fid) {
method writeFieldBegin (line 204) | public function writeFieldBegin($field_name, $field_type, $field_id) {
method writeFieldEnd (line 215) | public function writeFieldEnd() {
method writeCollectionBegin (line 220) | public function writeCollectionBegin($etype, $size) {
method writeMapBegin (line 236) | public function writeMapBegin($key_type, $val_type, $size) {
method writeCollectionEnd (line 249) | public function writeCollectionEnd() {
method writeMapEnd (line 254) | public function writeMapEnd() {
method writeListBegin (line 258) | public function writeListBegin($elem_type, $size) {
method writeListEnd (line 262) | public function writeListEnd() {
method writeSetBegin (line 266) | public function writeSetBegin($elem_type, $size) {
method writeSetEnd (line 270) | public function writeSetEnd() {
method writeBool (line 274) | public function writeBool($value) {
method writeByte (line 288) | public function writeByte($value) {
method writeUByte (line 294) | public function writeUByte($byte) {
method writeI16 (line 299) | public function writeI16($value) {
method writeI32 (line 304) | public function writeI32($value) {
method writeDouble (line 309) | public function writeDouble($value) {
method writeString (line 315) | public function writeString($value) {
method readFieldBegin (line 324) | public function readFieldBegin(&$name, &$field_type, &$field_id) {
method readFieldEnd (line 351) | public function readFieldEnd() {
method readUByte (line 356) | public function readUByte(&$value) {
method readByte (line 363) | public function readByte(&$value) {
method readZigZag (line 370) | public function readZigZag(&$value) {
method readMessageBegin (line 376) | public function readMessageBegin(&$name, &$type, &$seqid) {
method readMessageEnd (line 396) | public function readMessageEnd() {
method readStructBegin (line 400) | public function readStructBegin(&$name) {
method readStructEnd (line 408) | public function readStructEnd() {
method readCollectionBegin (line 415) | public function readCollectionBegin(&$type, &$size) {
method readMapBegin (line 429) | public function readMapBegin(&$key_type, &$val_type, &$size) {
method readCollectionEnd (line 443) | public function readCollectionEnd() {
method readMapEnd (line 448) | public function readMapEnd() {
method readListBegin (line 452) | public function readListBegin(&$elem_type, &$size) {
method readListEnd (line 456) | public function readListEnd() {
method readSetBegin (line 460) | public function readSetBegin(&$elem_type, &$size) {
method readSetEnd (line 464) | public function readSetEnd() {
method readBool (line 468) | public function readBool(&$value) {
method readI16 (line 479) | public function readI16(&$value) {
method readI32 (line 483) | public function readI32(&$value) {
method readDouble (line 487) | public function readDouble(&$value) {
method readString (line 494) | public function readString(&$value) {
method getTType (line 504) | public function getTType($byte) {
method readI64 (line 514) | public function readI64(&$value) {
method writeI64 (line 609) | public function writeI64($value) {
FILE: src/Thrift/Protocol/TJSONProtocol.php
class TJSONProtocol (line 37) | class TJSONProtocol extends TProtocol
method getTypeNameForTypeID (line 78) | private function getTypeNameForTypeID($typeID)
method getTypeIDForTypeName (line 108) | private function getTypeIDForTypeName($name)
method pushContext (line 165) | private function pushContext($c) {
method popContext (line 170) | private function popContext() {
method __construct (line 174) | public function __construct($trans) {
method reset (line 180) | public function reset() {
method readJSONSyntaxChar (line 188) | public function readJSONSyntaxChar($b) {
method hexVal (line 196) | private function hexVal($s) {
method hexChar (line 208) | private function hexChar($val) {
method writeJSONString (line 212) | private function writeJSONString($b) {
method writeJSONInteger (line 226) | private function writeJSONInteger($num) {
method writeJSONDouble (line 240) | private function writeJSONDouble($num) {
method writeJSONBase64 (line 254) | private function writeJSONBase64($data) {
method writeJSONObjectStart (line 261) | private function writeJSONObjectStart() {
method writeJSONObjectEnd (line 267) | private function writeJSONObjectEnd() {
method writeJSONArrayStart (line 272) | private function writeJSONArrayStart() {
method writeJSONArrayEnd (line 278) | private function writeJSONArrayEnd() {
method readJSONString (line 283) | private function readJSONString($skipContext) {
method isJSONNumeric (line 307) | private function isJSONNumeric($b) {
method readJSONNumericChars (line 329) | private function readJSONNumericChars() {
method readJSONInteger (line 345) | private function readJSONInteger() {
method readJSONIntegerAsString (line 371) | private function readJSONIntegerAsString() {
method readJSONDouble (line 391) | private function readJSONDouble() {
method readJSONBase64 (line 416) | private function readJSONBase64() {
method readJSONObjectStart (line 427) | private function readJSONObjectStart() {
method readJSONObjectEnd (line 433) | private function readJSONObjectEnd() {
method readJSONArrayStart (line 438) | private function readJSONArrayStart()
method readJSONArrayEnd (line 445) | private function readJSONArrayEnd() {
method writeMessageBegin (line 457) | public function writeMessageBegin($name, $type, $seqid) {
method writeMessageEnd (line 468) | public function writeMessageEnd() {
method writeStructBegin (line 479) | public function writeStructBegin($name) {
method writeStructEnd (line 489) | public function writeStructEnd() {
method writeFieldBegin (line 493) | public function writeFieldBegin($fieldName, $fieldType, $fieldId) {
method writeFieldEnd (line 499) | public function writeFieldEnd() {
method writeFieldStop (line 503) | public function writeFieldStop() {
method writeMapBegin (line 506) | public function writeMapBegin($keyType, $valType, $size) {
method writeMapEnd (line 514) | public function writeMapEnd() {
method writeListBegin (line 519) | public function writeListBegin($elemType, $size) {
method writeListEnd (line 525) | public function writeListEnd() {
method writeSetBegin (line 529) | public function writeSetBegin($elemType, $size) {
method writeSetEnd (line 535) | public function writeSetEnd() {
method writeBool (line 539) | public function writeBool($bool) {
method writeByte (line 543) | public function writeByte($byte) {
method writeI16 (line 547) | public function writeI16($i16) {
method writeI32 (line 551) | public function writeI32($i32) {
method writeI64 (line 555) | public function writeI64($i64) {
method writeDouble (line 559) | public function writeDouble($dub) {
method writeString (line 563) | public function writeString($str) {
method readMessageBegin (line 574) | public function readMessageBegin(&$name, &$type, &$seqid) {
method readMessageEnd (line 591) | public function readMessageEnd() {
method readStructBegin (line 595) | public function readStructBegin(&$name) {
method readStructEnd (line 600) | public function readStructEnd() {
method readFieldBegin (line 604) | public function readFieldBegin(&$name, &$fieldType, &$fieldId) {
method readFieldEnd (line 617) | public function readFieldEnd() {
method readMapBegin (line 621) | public function readMapBegin(&$keyType, &$valType, &$size) {
method readMapEnd (line 629) | public function readMapEnd() {
method readListBegin (line 634) | public function readListBegin(&$elemType, &$size) {
method readListEnd (line 641) | public function readListEnd() {
method readSetBegin (line 645) | public function readSetBegin(&$elemType, &$size) {
method readSetEnd (line 652) | public function readSetEnd() {
method readBool (line 656) | public function readBool(&$bool) {
method readByte (line 661) | public function readByte(&$byte) {
method readI16 (line 666) | public function readI16(&$i16) {
method readI32 (line 671) | public function readI32(&$i32) {
method readI64 (line 676) | public function readI64(&$i64) {
method readDouble (line 685) | public function readDouble(&$dub) {
method readString (line 690) | public function readString(&$str) {
FILE: src/Thrift/Protocol/TProtocol.php
class TProtocol (line 31) | abstract class TProtocol {
method __construct (line 43) | protected function __construct($trans) {
method getTransport (line 52) | public function getTransport() {
method writeMessageBegin (line 63) | public abstract function writeMessageBegin($name, $type, $seqid);
method writeMessageEnd (line 68) | public abstract function writeMessageEnd();
method writeStructBegin (line 77) | public abstract function writeStructBegin($name);
method writeStructEnd (line 85) | public abstract function writeStructEnd();
method writeFieldBegin (line 96) | public abstract function writeFieldBegin($fieldName, $fieldType, $fiel...
method writeFieldEnd (line 98) | public abstract function writeFieldEnd();
method writeFieldStop (line 100) | public abstract function writeFieldStop();
method writeMapBegin (line 102) | public abstract function writeMapBegin($keyType, $valType, $size);
method writeMapEnd (line 104) | public abstract function writeMapEnd();
method writeListBegin (line 106) | public abstract function writeListBegin($elemType, $size);
method writeListEnd (line 108) | public abstract function writeListEnd();
method writeSetBegin (line 110) | public abstract function writeSetBegin($elemType, $size);
method writeSetEnd (line 112) | public abstract function writeSetEnd();
method writeBool (line 114) | public abstract function writeBool($bool);
method writeByte (line 116) | public abstract function writeByte($byte);
method writeI16 (line 118) | public abstract function writeI16($i16);
method writeI32 (line 120) | public abstract function writeI32($i32);
method writeI64 (line 122) | public abstract function writeI64($i64);
method writeDouble (line 124) | public abstract function writeDouble($dub);
method writeString (line 126) | public abstract function writeString($str);
method readMessageBegin (line 135) | public abstract function readMessageBegin(&$name, &$type, &$seqid);
method readMessageEnd (line 140) | public abstract function readMessageEnd();
method readStructBegin (line 142) | public abstract function readStructBegin(&$name);
method readStructEnd (line 144) | public abstract function readStructEnd();
method readFieldBegin (line 146) | public abstract function readFieldBegin(&$name, &$fieldType, &$fieldId);
method readFieldEnd (line 148) | public abstract function readFieldEnd();
method readMapBegin (line 150) | public abstract function readMapBegin(&$keyType, &$valType, &$size);
method readMapEnd (line 152) | public abstract function readMapEnd();
method readListBegin (line 154) | public abstract function readListBegin(&$elemType, &$size);
method readListEnd (line 156) | public abstract function readListEnd();
method readSetBegin (line 158) | public abstract function readSetBegin(&$elemType, &$size);
method readSetEnd (line 160) | public abstract function readSetEnd();
method readBool (line 162) | public abstract function readBool(&$bool);
method readByte (line 164) | public abstract function readByte(&$byte);
method readI16 (line 166) | public abstract function readI16(&$i16);
method readI32 (line 168) | public abstract function readI32(&$i32);
method readI64 (line 170) | public abstract function readI64(&$i64);
method readDouble (line 172) | public abstract function readDouble(&$dub);
method readString (line 174) | public abstract function readString(&$str);
method skip (line 182) | public function skip($type) {
method skipBinary (line 252) | public static function skipBinary($itrans, $type) {
FILE: src/Thrift/Serializer/TBinarySerializer.php
class TBinarySerializer (line 34) | class TBinarySerializer {
method serialize (line 41) | public static function serialize($object) {
method deserialize (line 58) | public static function deserialize($string_object, $class_name) {
FILE: src/Thrift/Server/TForkingServer.php
class TForkingServer (line 15) | class TForkingServer extends TServer {
method serve (line 37) | public function serve() {
method handleParent (line 71) | private function handleParent(TTransport $transport, $pid) {
method handleChild (line 81) | private function handleChild(TTransport $transport) {
method collectChildren (line 100) | private function collectChildren() {
method stop (line 115) | public function stop() {
FILE: src/Thrift/Server/TServer.php
class TServer (line 14) | abstract class TServer {
method __construct (line 70) | public function __construct($processor,
method serve (line 92) | abstract public function serve();
method stop (line 100) | abstract public function stop();
FILE: src/Thrift/Server/TServerSocket.php
class TServerSocket (line 13) | class TServerSocket extends TServerTransport {
method __construct (line 50) | public function __construct($host = 'localhost', $port = 9090) {
method setAcceptTimeout (line 61) | public function setAcceptTimeout($acceptTimeout) {
method listen (line 70) | public function listen() {
method close (line 79) | public function close() {
method acceptImpl (line 89) | protected function acceptImpl() {
FILE: src/Thrift/Server/TServerTransport.php
class TServerTransport (line 12) | abstract class TServerTransport {
method listen (line 19) | abstract public function listen();
method close (line 27) | abstract public function close();
method acceptImpl (line 36) | protected abstract function acceptImpl();
method accept (line 45) | public function accept() {
FILE: src/Thrift/Server/TSimpleServer.php
class TSimpleServer (line 13) | class TSimpleServer extends TServer {
method serve (line 28) | public function serve() {
method stop (line 53) | public function stop() {
FILE: src/Thrift/StringFunc/Core.php
class Core (line 26) | class Core implements TStringFunc {
method substr (line 27) | public function substr($str, $start, $length = null) {
method strlen (line 35) | public function strlen($str) {
FILE: src/Thrift/StringFunc/Mbstring.php
class Mbstring (line 26) | class Mbstring implements TStringFunc {
method substr (line 27) | public function substr($str, $start, $length = null) {
method strlen (line 42) | public function strlen($str) {
FILE: src/Thrift/StringFunc/TStringFunc.php
type TStringFunc (line 24) | interface TStringFunc {
method substr (line 25) | public function substr($str, $start, $length = null);
method strlen (line 26) | public function strlen($str);
FILE: src/Thrift/Transport/TBufferedTransport.php
class TBufferedTransport (line 35) | class TBufferedTransport extends TTransport {
method __construct (line 40) | public function __construct($transport=null, $rBufSize=512, $wBufSize=...
method isOpen (line 81) | public function isOpen() {
method open (line 85) | public function open() {
method close (line 89) | public function close() {
method putBack (line 93) | public function putBack($data) {
method readAll (line 110) | public function readAll($len) {
method read (line 128) | public function read($len) {
method write (line 144) | public function write($buf) {
method flush (line 157) | public function flush() {
FILE: src/Thrift/Transport/TFramedTransport.php
class TFramedTransport (line 34) | class TFramedTransport extends TTransport {
method __construct (line 76) | public function __construct($transport=null, $read=true, $write=true) {
method isOpen (line 82) | public function isOpen() {
method open (line 86) | public function open() {
method close (line 90) | public function close() {
method read (line 100) | public function read($len) {
method putBack (line 127) | public function putBack($data) {
method readFrame (line 138) | private function readFrame() {
method write (line 152) | public function write($buf, $len=null) {
method flush (line 167) | public function flush() {
FILE: src/Thrift/Transport/THttpClient.php
class THttpClient (line 34) | class THttpClient extends TTransport {
method __construct (line 99) | public function __construct($host, $port=80, $uri='', $scheme = 'http') {
method setTimeoutSecs (line 118) | public function setTimeoutSecs($timeout) {
method isOpen (line 127) | public function isOpen() {
method open (line 136) | public function open() {}
method close (line 141) | public function close() {
method read (line 155) | public function read($len) {
method write (line 174) | public function write($buf) {
method flush (line 183) | public function flush() {
method addHeaders (line 217) | public function addHeaders($headers) {
FILE: src/Thrift/Transport/TMemoryBuffer.php
class TMemoryBuffer (line 37) | class TMemoryBuffer extends TTransport {
method __construct (line 43) | public function __construct($buf = '') {
method isOpen (line 49) | public function isOpen() {
method open (line 53) | public function open() {}
method close (line 55) | public function close() {}
method write (line 57) | public function write($buf) {
method read (line 61) | public function read($len) {
method getBuffer (line 82) | function getBuffer() {
method available (line 86) | public function available() {
FILE: src/Thrift/Transport/TNullTransport.php
class TNullTransport (line 34) | class TNullTransport extends TTransport {
method isOpen (line 36) | public function isOpen() {
method open (line 40) | public function open() {}
method close (line 42) | public function close() {}
method read (line 44) | public function read($len) {
method write (line 48) | public function write($buf) {}
FILE: src/Thrift/Transport/TPhpStream.php
class TPhpStream (line 35) | class TPhpStream extends TTransport {
method __construct (line 48) | public function __construct($mode) {
method open (line 53) | public function open() {
method close (line 68) | public function close() {
method isOpen (line 79) | public function isOpen() {
method read (line 85) | public function read($len) {
method write (line 93) | public function write($buf) {
method flush (line 103) | public function flush() {
method inStreamName (line 107) | private static function inStreamName() {
FILE: src/Thrift/Transport/TSocket.php
class TSocket (line 35) | class TSocket extends TTransport {
method __construct (line 123) | public function __construct($host='localhost',
method setHandle (line 137) | public function setHandle($handle) {
method setSendTimeout (line 146) | public function setSendTimeout($timeout) {
method setRecvTimeout (line 157) | public function setRecvTimeout($timeout) {
method setDebug (line 168) | public function setDebug($debug) {
method getHost (line 177) | public function getHost() {
method getPort (line 186) | public function getPort() {
method isOpen (line 195) | public function isOpen() {
method open (line 202) | public function open() {
method close (line 242) | public function close() {
method read (line 258) | public function read($len) {
method write (line 287) | public function write($buf) {
method flush (line 323) | public function flush() {
FILE: src/Thrift/Transport/TSocketPool.php
function apc_fetch (line 35) | function apc_fetch($key) { return FALSE; }
function apc_store (line 36) | function apc_store($key, $var, $ttl=0) { return FALSE; }
class TSocketPool (line 45) | class TSocketPool extends TSocket {
method __construct (line 96) | public function __construct($hosts=array('localhost'),
method addServer (line 124) | public function addServer($host, $port) {
method setNumRetries (line 133) | public function setNumRetries($numRetries) {
method setRetryInterval (line 142) | public function setRetryInterval($retryInterval) {
method setMaxConsecutiveFailures (line 151) | public function setMaxConsecutiveFailures($maxConsecutiveFailures) {
method setRandomize (line 160) | public function setRandomize($randomize) {
method setAlwaysTryLast (line 169) | public function setAlwaysTryLast($alwaysTryLast) {
method open (line 178) | public function open() {
FILE: src/Thrift/Transport/TTransport.php
class TTransport (line 32) | abstract class TTransport {
method isOpen (line 39) | public abstract function isOpen();
method open (line 46) | public abstract function open();
method close (line 51) | public abstract function close();
method read (line 60) | public abstract function read($len);
method readAll (line 68) | public function readAll($len) {
method write (line 85) | public abstract function write($buf);
method flush (line 92) | public function flush() {}
FILE: src/Thrift/Type/TConstant.php
class TConstant (line 30) | abstract class TConstant
method __construct (line 35) | protected function __construct() {}
method get (line 42) | public static function get($constant)
FILE: src/Thrift/Type/TMessageType.php
class TMessageType (line 28) | class TMessageType {
FILE: src/Thrift/Type/TType.php
class TType (line 28) | class TType {
FILE: src/autoload.php
function autoload (line 3) | function autoload($className)
function edamAutoload (line 35) | function edamAutoload($className, $lastNsPos)
function evernoteAutoload (line 49) | function evernoteAutoload($className, $lastNsPos)
function thriftAutoload (line 54) | function thriftAutoload($className, $lastNsPos)
function genericAutoload (line 59) | function genericAutoload($className, $lastNsPos)
FILE: tests/Evernote/Tests/ClientTest.php
class ClientTest (line 8) | class ClientTest extends \PHPUnit_Framework_TestCase
method requires (line 19) | protected function requires($var)
method getClient (line 28) | public function getClient($token, $token_type, $sandbox = true, $useFi...
method test_listNotebooks_regularUser_shouldReturnAllKindsOfNotebooks (line 35) | public function test_listNotebooks_regularUser_shouldReturnAllKindsOfN...
method test_listNotebooks_businessUser_shouldReturnAllKindsOfNotebooks (line 57) | public function test_listNotebooks_businessUser_shouldReturnAllKindsOf...
method test_listNotebooks_businessAdmin_shouldReturnAllKindsOfNotebooks (line 83) | public function test_listNotebooks_businessAdmin_shouldReturnAllKindsO...
FILE: tests/Evernote/Tests/Factory/ThriftClientFactoryMock.php
class ThriftClientFactoryMock (line 7) | class ThriftClientFactoryMock
method __construct (line 13) | public function __construct($token, $token_type, $useFixtures = true)
method createThriftClient (line 20) | public function createThriftClient($type, $url)
class ThriftClient (line 26) | class ThriftClient
method __construct (line 34) | public function __construct($type, $url, $token, $token_type, $useFixt...
method __call (line 43) | public function __call($name, $args)
method generateFixtureFilename (line 73) | private function generateFixtureFilename($name, $args)
Condensed preview — 161 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,618K chars).
[
{
"path": ".gitignore",
"chars": 71,
"preview": ".idea\n.swp\n/vendor/\n/composer.phar\n/composer.lock\n.DS_Store\nphpunit.xml"
},
{
"path": ".travis.yml",
"chars": 186,
"preview": "language: php\n\nphp:\n - 5.3\n\nbefore_script:\n - composer self-update\n - composer install --dev --prefer-dist --no"
},
{
"path": "APACHE-LICENSE-2.0.txt",
"chars": 11358,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": "LICENSE",
"chars": 1455,
"preview": "/*\n * Copyright (c) 2007-2015 by Evernote Corporation, All rights reserved.\n *\n * Use of the source code and binary libr"
},
{
"path": "NOTICE",
"chars": 167,
"preview": "Apache Thrift\nCopyright 2006-2015 The Apache Software Foundation.\n\nThis product includes software developed at\nThe Apach"
},
{
"path": "README.md",
"chars": 1341,
"preview": "Evernote Cloud SDK PHP v2.0.2\n=====================================\n\nA newly-redesigned, simple, workflow-oriented libra"
},
{
"path": "composer.json",
"chars": 996,
"preview": "{\n \"name\": \"evernote/evernote-cloud-sdk-php\",\n \"description\": \"Evernote Cloud SDK for PHP\",\n \"keywords\": [\n "
},
{
"path": "documentation/ApiIndex.md",
"chars": 68,
"preview": "API Index\n=========\n\n* Evernote\n * [Client](Evernote-Client.md)\n\n"
},
{
"path": "documentation/Evernote-Client.md",
"chars": 11134,
"preview": "Evernote\\Client\n===============\n\n\n\n\n\n\n* Class name: Client\n* Namespace: Evernote\n\n\n\nConstants\n----------\n\n\n### PERSONAL_"
},
{
"path": "documentation/Getting_Started.md",
"chars": 3696,
"preview": "Installation\n------------\n\nThe recommended way to install the SDK is through composer.\n\nJust run these two commands to i"
},
{
"path": "documentation/Migration.md",
"chars": 1455,
"preview": "Migrating from Evernote SDK for PHP 1.x\n=======================================\n\nOauth\n-----\n\nThe OAuth process has been"
},
{
"path": "phpunit.xml.dist",
"chars": 895,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<phpunit backupGlobals=\"false\"\n backupStaticAttributes=\"false\"\n c"
},
{
"path": "sample/client/add_resource.php",
"chars": 1955,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/create_note.php",
"chars": 2225,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/delete_note.php",
"chars": 1767,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/find_notes.php",
"chars": 2027,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/list_notebooks.php",
"chars": 1751,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/move_note.php",
"chars": 2811,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/reminders.php",
"chars": 2366,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/replace_note.php",
"chars": 1763,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/client/share_note.php",
"chars": 1603,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/**\n * Authorization Tokens are created by either:\n * [1] OAuth w"
},
{
"path": "sample/oauth/index.php",
"chars": 1597,
"preview": "<?php\nrequire __DIR__ . '/../../vendor/autoload.php';\n\n/** Understanding SANDBOX vs PRODUCTION vs CHINA Environments\n *\n"
},
{
"path": "src/EDAM/Error/Types.php",
"chars": 9050,
"preview": "<?php\nnamespace EDAM\\Error;\n\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE THAT "
},
{
"path": "src/EDAM/Limits/Types.php",
"chars": 22382,
"preview": "<?php\nnamespace EDAM\\Limits;\n\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE THAT"
},
{
"path": "src/EDAM/NoteStore/NoteStore.php",
"chars": 718444,
"preview": "<?php\nnamespace EDAM\\NoteStore;\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE TH"
},
{
"path": "src/EDAM/NoteStore/Types.php",
"chars": 107228,
"preview": "<?php\nnamespace EDAM\\NoteStore;\n\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE T"
},
{
"path": "src/EDAM/Types/Types.php",
"chars": 192913,
"preview": "<?php\nnamespace EDAM\\Types;\n\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE THAT "
},
{
"path": "src/EDAM/UserStore/Types.php",
"chars": 28592,
"preview": "<?php\nnamespace EDAM\\UserStore;\n\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE T"
},
{
"path": "src/EDAM/UserStore/UserStore.php",
"chars": 96564,
"preview": "<?php\nnamespace EDAM\\UserStore;\n/**\n * Autogenerated by Thrift Compiler (0.9.1)\n *\n * DO NOT EDIT UNLESS YOU ARE SURE TH"
},
{
"path": "src/Evernote/AdvancedClient.php",
"chars": 3499,
"preview": "<?php\n\nnamespace Evernote;\n\nuse Psr\\Log\\NullLogger;\nuse Psr\\Log\\LoggerInterface;\nuse Evernote\\Factory\\ThriftClientFactor"
},
{
"path": "src/Evernote/Auth/OauthHandler.php",
"chars": 6320,
"preview": "<?php\n\nnamespace Evernote\\Auth;\n\nuse Evernote\\Exception\\AuthorizationDeniedException;\n\nclass OauthHandler\n{\n protecte"
},
{
"path": "src/Evernote/Client.php",
"chars": 40922,
"preview": "<?php\n\nnamespace Evernote;\n\nuse Psr\\Log\\NullLogger;\nuse Psr\\Log\\LoggerInterface;\nuse EDAM\\Error\\EDAMNotFoundException;\nu"
},
{
"path": "src/Evernote/Enml/CSSInliner/CssInlinerInterface.php",
"chars": 120,
"preview": "<?php\n\nnamespace Evernote\\Enml\\CSSInliner;\n\ninterface CssInlinerInterface\n{\n public function convert($html, $css);\n} "
},
{
"path": "src/Evernote/Enml/CSSInliner/CssToInlineStyles.php",
"chars": 446,
"preview": "<?php\n\nnamespace Evernote\\Enml\\CSSInliner;\n\nclass CssToInlineStyles implements CssInlinerInterface\n{\n protected $cssI"
},
{
"path": "src/Evernote/Enml/Converter/EnmlConverterInterface.php",
"chars": 125,
"preview": "<?php\n\nnamespace Evernote\\Enml\\Converter;\n\ninterface EnmlConverterInterface\n{\n public function convertToEnml($content"
},
{
"path": "src/Evernote/Enml/Converter/EnmlToHtmlConverter.php",
"chars": 582,
"preview": "<?php\n\nnamespace Evernote\\Enml\\Converter;\n\nclass EnmlToHtmlConverter implements HtmlConverterInterface\n{\n public func"
},
{
"path": "src/Evernote/Enml/Converter/HtmlConverterInterface.php",
"chars": 125,
"preview": "<?php\n\nnamespace Evernote\\Enml\\Converter;\n\ninterface HtmlConverterInterface\n{\n public function convertToHtml($content"
},
{
"path": "src/Evernote/Enml/Converter/HtmlToEnmlConverter.php",
"chars": 3842,
"preview": "<?php\n\nnamespace Evernote\\Enml\\Converter;\n\nuse Evernote\\Enml\\CSSInliner\\CssInlinerInterface;\nuse Evernote\\Enml\\CSSInline"
},
{
"path": "src/Evernote/Enml/Converter/PlainTextToEnmlConverter.php",
"chars": 343,
"preview": "<?php\n\nnamespace Evernote\\Enml\\Converter;\n\nclass PlainTextToEnmlConverter implements EnmlConverterInterface\n{\n public"
},
{
"path": "src/Evernote/Enml/Converter/enml2html.xslt",
"chars": 1760,
"preview": "<?xml version=\"1.0\"?>\n<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n\n <!-- https://"
},
{
"path": "src/Evernote/Enml/Converter/html2enml.xslt",
"chars": 2269,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xm"
},
{
"path": "src/Evernote/Enml/HtmlCleaner/HtmlCleanerInterface.php",
"chars": 114,
"preview": "<?php\n\nnamespace Evernote\\Enml\\HtmlCleaner;\n\ninterface HtmlCleanerInterface\n{\n public function clean($html);\n} "
},
{
"path": "src/Evernote/Enml/HtmlCleaner/HtmlPurifier.php",
"chars": 533,
"preview": "<?php\n\nnamespace Evernote\\Enml\\HtmlCleaner;\n\nclass HtmlPurifier implements HtmlCleanerInterface\n{\n protected $htmlPur"
},
{
"path": "src/Evernote/Exception/AuthExpiredException.php",
"chars": 93,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass AuthExpiredException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/AuthorizationDeniedException.php",
"chars": 101,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass AuthorizationDeniedException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/BadDataFormatException.php",
"chars": 91,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass BadDataFormatException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/DataConflictException.php",
"chars": 94,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass DataConflictException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/DataRequiredException.php",
"chars": 90,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass DataRequiredException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/EnmlValidationException.php",
"chars": 92,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass EnmlValidationException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/ExceptionFactory.php",
"chars": 2199,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nuse EDAM\\Error\\EDAMNotFoundException;\nuse EDAM\\Error\\EDAMSystemException;\nuse EDAM"
},
{
"path": "src/Evernote/Exception/InternalErrorException.php",
"chars": 91,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass InternalErrorException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/InvalidAuthException.php",
"chars": 93,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass InvalidAuthException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/LengthTooLongException.php",
"chars": 95,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass LengthTooLongException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/LengthTooShortException.php",
"chars": 96,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass LengthTooShortException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/LimitReachedException.php",
"chars": 90,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass LimitReachedException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/NotFoundNoteException.php",
"chars": 90,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass NotFoundNoteException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/NotFoundNotebookException.php",
"chars": 94,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass NotFoundNotebookException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/NotFoundSharedNotebookException.php",
"chars": 97,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass NotFoundSharedNotebookException extends \\Exception\n{}"
},
{
"path": "src/Evernote/Exception/PermissionDeniedException.php",
"chars": 94,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass PermissionDeniedException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/QuotaReachedException.php",
"chars": 94,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass QuotaReachedException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/RateLimitReachedException.php",
"chars": 98,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass RateLimitReachedException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/ShardUnavailableException.php",
"chars": 98,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass ShardUnavailableException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/TakenDownException.php",
"chars": 91,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass TakenDownException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/TooFewException.php",
"chars": 88,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass TooFewException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/TooManyException.php",
"chars": 89,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass TooManyException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Exception/UnknownException.php",
"chars": 85,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass UnknownException extends \\Exception\n{\n\n} "
},
{
"path": "src/Evernote/Exception/UnsupportedOperationException.php",
"chars": 103,
"preview": "<?php\n\nnamespace Evernote\\Exception;\n\nclass UnsupportedOperationException extends \\Exception\n{\n \n} "
},
{
"path": "src/Evernote/Factory/ThriftClientFactory.php",
"chars": 1072,
"preview": "<?php\n\nnamespace Evernote\\Factory;\n\nuse Thrift\\Transport\\THttpClient;\nuse Thrift\\Protocol\\TBinaryProtocol;\n\nclass Thrift"
},
{
"path": "src/Evernote/File/File.php",
"chars": 1725,
"preview": "<?php\n\nnamespace Evernote\\File;\n\nclass File extends \\SplFileObject implements FileInterface\n{\n protected $mimeType;\n\n"
},
{
"path": "src/Evernote/File/FileInterface.php",
"chars": 165,
"preview": "<?php\n\nnamespace Evernote\\File;\n\ninterface FileInterface\n{\n public function getMimeType();\n public function getFil"
},
{
"path": "src/Evernote/Model/EnmlNoteContent.php",
"chars": 1874,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse Evernote\\Enml\\Converter\\EnmlToHtmlConverter;\nuse Evernote\\Enml\\Converter\\HtmlConve"
},
{
"path": "src/Evernote/Model/HtmlNoteContent.php",
"chars": 614,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse Evernote\\Enml\\Converter\\HtmlToEnmlConverter;\n\nclass HtmlNoteContent extends NoteCo"
},
{
"path": "src/Evernote/Model/Note.php",
"chars": 6174,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse EDAM\\Limits\\Constant;\nuse EDAM\\NoteStore\\NoteStoreClient;\nuse EDAM\\Types\\NoteAttri"
},
{
"path": "src/Evernote/Model/NoteContent.php",
"chars": 445,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse Evernote\\Enml\\Converter\\EnmlConverterInterface;\n\nabstract class NoteContent\n{\n "
},
{
"path": "src/Evernote/Model/NoteContentInterface.php",
"chars": 139,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\ninterface NoteContentInterface\n{\n public function toEnml();\n\n public function ge"
},
{
"path": "src/Evernote/Model/Notebook.php",
"chars": 3069,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nclass Notebook\n{\n /** @var string */\n protected $name = '';\n\n /** @var strin"
},
{
"path": "src/Evernote/Model/PlainTextNoteContent.php",
"chars": 497,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse Evernote\\Enml\\Converter\\PlainTextToEnmlConverter;\n\nclass PlainTextNoteContent exte"
},
{
"path": "src/Evernote/Model/Resource.php",
"chars": 1975,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nuse EDAM\\Types\\Data;\nuse EDAM\\Types\\ResourceAttributes;\nuse Evernote\\File\\File;\nuse Ev"
},
{
"path": "src/Evernote/Model/Search.php",
"chars": 312,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nclass Search \n{\n protected $searchString;\n\n public function __construct($searchS"
},
{
"path": "src/Evernote/Model/SearchResult.php",
"chars": 158,
"preview": "<?php\n\nnamespace Evernote\\Model;\n\nclass SearchResult\n{\n public $guid;\n\n public $type;\n\n public $title;\n\n pub"
},
{
"path": "src/Evernote/Store/Store.php",
"chars": 2405,
"preview": "<?php\n\nnamespace Evernote\\Store;\n\nuse Evernote\\Factory\\ThriftClientFactory;\n\nclass Store\n{\n /** @var \\Evernote\\Factor"
},
{
"path": "src/Thrift/Base/TBase.php",
"chars": 10810,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/ClassLoader/ThriftClassLoader.php",
"chars": 6273,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Exception/TApplicationException.php",
"chars": 2308,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Exception/TException.php",
"chars": 10984,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Exception/TProtocolException.php",
"chars": 1398,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Exception/TTransportException.php",
"chars": 1200,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TBinaryProtocolFactory.php",
"chars": 1384,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TCompactProtocolFactory.php",
"chars": 1167,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TJSONProtocolFactory.php",
"chars": 1175,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TProtocolFactory.php",
"chars": 1119,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TStringFuncFactory.php",
"chars": 1970,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Factory/TTransportFactory.php",
"chars": 269,
"preview": "<?php\n\nnamespace Thrift\\Factory;\n\nuse Thrift\\Transport\\TTransport;\n\nclass TTransportFactory {\n /**\n * @static\n * @p"
},
{
"path": "src/Thrift/Protocol/JSON/BaseContext.php",
"chars": 1022,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/JSON/ListContext.php",
"chars": 1492,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/JSON/LookaheadReader.php",
"chars": 1512,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/JSON/PairContext.php",
"chars": 1832,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/TBinaryProtocol.php",
"chars": 9218,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/TBinaryProtocolAccelerated.php",
"chars": 1619,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/TCompactProtocol.php",
"chars": 17964,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Protocol/TJSONProtocol.php",
"chars": 19453,
"preview": "<?php\n\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See t"
},
{
"path": "src/Thrift/Protocol/TProtocol.php",
"chars": 8976,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Serializer/TBinarySerializer.php",
"chars": 2712,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Server/TForkingServer.php",
"chars": 2640,
"preview": "<?php\n\nnamespace Thrift\\Server;\n\nuse Thrift\\Server\\TServer;\nuse Thrift\\Transport\\TTransport;\nuse Thrift\\Exception\\TExcep"
},
{
"path": "src/Thrift/Server/TServer.php",
"chars": 2333,
"preview": "<?php\n\nnamespace Thrift\\Server;\n\nuse Thrift\\Server\\TServerTransport;\nuse Thrift\\Factory\\TTransportFactory;\nuse Thrift\\Fa"
},
{
"path": "src/Thrift/Server/TServerSocket.php",
"chars": 1810,
"preview": "<?php\n\nnamespace Thrift\\Server;\n\nuse Thrift\\Server\\TServerTransport;\nuse Thrift\\Transport\\TSocket;\n\n/**\n * Socket implem"
},
{
"path": "src/Thrift/Server/TServerTransport.php",
"chars": 929,
"preview": "<?php\n\nnamespace Thrift\\Server;\n\nuse Thrift\\Exception\\TTransportException;\n\n/**\n * Generic class for Server agent.\n *\n *"
},
{
"path": "src/Thrift/Server/TSimpleServer.php",
"chars": 1390,
"preview": "<?php\n\nnamespace Thrift\\Server;\n\nuse Thrift\\Server\\TServer;\nuse Thrift\\Exception\\TTransportException;\n\n/**\n * Simple imp"
},
{
"path": "src/Thrift/StringFunc/Core.php",
"chars": 1247,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/StringFunc/Mbstring.php",
"chars": 1565,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/StringFunc/TStringFunc.php",
"chars": 961,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TBufferedTransport.php",
"chars": 4519,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TFramedTransport.php",
"chars": 4492,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/THttpClient.php",
"chars": 5503,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TMemoryBuffer.php",
"chars": 2427,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TNullTransport.php",
"chars": 1406,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TPhpStream.php",
"chars": 3100,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TSocket.php",
"chars": 8817,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TSocketPool.php",
"chars": 8334,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Transport/TTransport.php",
"chars": 2360,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Type/TConstant.php",
"chars": 1458,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Type/TMessageType.php",
"chars": 993,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/Thrift/Type/TType.php",
"chars": 1315,
"preview": "<?php\n/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See th"
},
{
"path": "src/autoload.php",
"chars": 1605,
"preview": "<?php\n\nfunction autoload($className)\n{\n $className = ltrim($className, '\\\\');\n $vendor = substr($className, 0"
},
{
"path": "tests/Evernote/Tests/ClientTest.php",
"chars": 3463,
"preview": "<?php\nnamespace Evernote\\Tests;\n\nuse Evernote\\AdvancedClient;\nuse Evernote\\Client;\nuse Evernote\\Tests\\Factory\\ThriftClie"
},
{
"path": "tests/Evernote/Tests/Factory/ThriftClientFactoryMock.php",
"chars": 2621,
"preview": "<?php\n\nnamespace Evernote\\Tests\\Factory;\n\nuse Evernote\\Factory\\ThriftClientFactory;\n\nclass ThriftClientFactoryMock\n{\n "
},
{
"path": "tests/bootstrap.php",
"chars": 101,
"preview": "<?php\n$loader = include __DIR__ . '/../vendor/autoload.php';\n$loader->add('Evernote\\Tests', __DIR__);"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_1d9fc47121ec77f859917916d8d773c44190b332",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028493748;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_4308453c30010f6fddcfcbf282b8cd29e44af0a1",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028502894;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_73b11960aeaa2ba866b406c2a93ed03f16db36d9",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028496218;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_8d241b577460159e730d3b82088ce127583e2bec",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028500228;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_9577897cad7bf1e37f2606087f3f693f47506bd3",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028498894;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_a99bcc7351d22c34ea3a721ee456bd94de037d8c",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028501567;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_c20b1b0b4a29805231df016645ecd8d10df5f482",
"chars": 1813,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028497541;s:19:\"authenticationToken\";s:114:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_3e6b2af694337e2953fccfd591ac7a23ac9cc541",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005164586;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_530966c9d987f0a33eb4aae4795088981d09de2d",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005165742;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_98109d118517ebeb7ada77c9db5ab71341f7590f",
"chars": 1788,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005169264;s:19:\"authenticationToken\";s:114:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_9cf7cf916a80d10d4e4eeb62398dd60ce497d607",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005166923;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_d1901257919570d4c4cc1f2fc47fc1a97327fd92",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005162250;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_BUSINESS_USER_TOKEN_dda1101e9822fbd8d1a1dbeb09df9045e2cd7a6a",
"chars": 1827,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005168101;s:19:\"authenticationToken\";s:128:\"S=s1:"
},
{
"path": "tests/fixtures/note/authenticateToSharedNotebook_REGULAR_USER_TOKEN_ab05ad6f7147221284dae09f8170c8e57ec73287",
"chars": 1752,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005152847;s:19:\"authenticationToken\";s:114:\"S=s1:"
},
{
"path": "tests/fixtures/note/getSharedNotebookByAuth_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 591,
"preview": "O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:30087;s:6:\"userId\";i:402980;s:12:\"notebookGuid\";s:36:\"db5aa2aa-8602-4d6b"
},
{
"path": "tests/fixtures/note/getSharedNotebookByAuth_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 601,
"preview": "O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:30089;s:6:\"userId\";i:402980;s:12:\"notebookGuid\";s:36:\"3bf5f260-6f31-4aee"
},
{
"path": "tests/fixtures/note/getSharedNotebookByAuth_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 595,
"preview": "O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:30086;s:6:\"userId\";i:586089;s:12:\"notebookGuid\";s:36:\"32e454e7-510a-43f6"
},
{
"path": "tests/fixtures/note/listLinkedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 3299,
"preview": "a:7:{i:0;O:25:\"EDAM\\Types\\LinkedNotebook\":11:{s:9:\"shareName\";s:19:\"Business Notebook 1\";s:8:\"username\";s:25:\"_business_"
},
{
"path": "tests/fixtures/note/listLinkedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 2826,
"preview": "a:6:{i:0;O:25:\"EDAM\\Types\\LinkedNotebook\":11:{s:9:\"shareName\";s:16:\"Business private\";s:8:\"username\";s:25:\"_business_bus"
},
{
"path": "tests/fixtures/note/listLinkedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 464,
"preview": "a:1:{i:0;O:25:\"EDAM\\Types\\LinkedNotebook\":11:{s:9:\"shareName\";s:34:\"Shared with user (All permissions)\";s:8:\"username\";s"
},
{
"path": "tests/fixtures/note/listNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 4492,
"preview": "a:4:{i:0;O:19:\"EDAM\\Types\\Notebook\":14:{s:4:\"guid\";s:36:\"43cbb92f-9431-4248-8527-2993930b81c1\";s:4:\"name\";s:5:\"INBOX\";s:"
},
{
"path": "tests/fixtures/note/listNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 4492,
"preview": "a:4:{i:0;O:19:\"EDAM\\Types\\Notebook\":14:{s:4:\"guid\";s:36:\"3ff22164-87c0-4f91-93e9-993a53466fe8\";s:4:\"name\";s:5:\"INBOX\";s:"
},
{
"path": "tests/fixtures/note/listNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 5549,
"preview": "a:5:{i:0;O:19:\"EDAM\\Types\\Notebook\":14:{s:4:\"guid\";s:36:\"5d23a1b5-ae86-4e0a-a0b0-76e2cf79e843\";s:4:\"name\";s:37:\"User cre"
},
{
"path": "tests/fixtures/note/listSharedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 868,
"preview": "a:2:{i:0;O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:33902;s:6:\"userId\";i:402477;s:12:\"notebookGuid\";s:36:\"c6ac9177-"
},
{
"path": "tests/fixtures/note/listSharedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 878,
"preview": "a:2:{i:0;O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:33891;s:6:\"userId\";i:403546;s:12:\"notebookGuid\";s:36:\"76e1b7d3-"
},
{
"path": "tests/fixtures/note/listSharedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 1358,
"preview": "a:3:{i:0;O:25:\"EDAM\\Types\\SharedNotebook\":13:{s:2:\"id\";i:33881;s:6:\"userId\";i:402456;s:12:\"notebookGuid\";s:36:\"4d89a60f-"
},
{
"path": "tests/fixtures/user/authenticateToBusiness_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 2551,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438028492425;s:19:\"authenticationToken\";s:121:\"S=s1:"
},
{
"path": "tests/fixtures/user/authenticateToBusiness_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 2551,
"preview": "O:35:\"EDAM\\UserStore\\AuthenticationResult\":9:{s:11:\"currentTime\";i:1438005161088;s:19:\"authenticationToken\";s:121:\"S=s1:"
},
{
"path": "tests/fixtures/user/getNoteStoreUrl_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 55,
"preview": "s:47:\"https://sandbox.evernote.com/shard/s1/notestore\";"
},
{
"path": "tests/fixtures/user/getNoteStoreUrl_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 55,
"preview": "s:47:\"https://sandbox.evernote.com/shard/s1/notestore\";"
},
{
"path": "tests/fixtures/user/getNoteStoreUrl_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 55,
"preview": "s:47:\"https://sandbox.evernote.com/shard/s1/notestore\";"
},
{
"path": "tests/fixtures/user/getUser_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1",
"chars": 1171,
"preview": "O:15:\"EDAM\\Types\\User\":15:{s:2:\"id\";i:402477;s:8:\"username\";s:29:\"laurent_sarrazin_sbx_business\";s:5:\"email\";N;s:4:\"name"
},
{
"path": "tests/fixtures/user/getUser_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3",
"chars": 1173,
"preview": "O:15:\"EDAM\\Types\\User\":15:{s:2:\"id\";i:403546;s:8:\"username\";s:34:\"laurent_sarrazin_sbx_business_user\";s:5:\"email\";N;s:4:"
},
{
"path": "tests/fixtures/user/getUser_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1",
"chars": 983,
"preview": "O:15:\"EDAM\\Types\\User\":15:{s:2:\"id\";i:402456;s:8:\"username\";s:25:\"laurent_sarrazin_sbx_free\";s:5:\"email\";N;s:4:\"name\";N;"
}
]
About this extraction
This page contains the full source code of the evernote/evernote-cloud-sdk-php GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 161 files (1.5 MB), approximately 424.1k tokens, and a symbol index with 2264 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.