Devel Load

stdClass Object
(
    [__CLASS__] => Drupal\node\Entity\Node
    [in_preview] => 
    [values:protected] => Array
        (
            [nid] => Array
                (
                    [x-default] => 3
                )

            [vid] => Array
                (
                    [x-default] => 635
                )

            [type] => Array
                (
                    [x-default] => article
                )

            [uuid] => Array
                (
                    [x-default] => e21e171b-656a-4f88-b5e4-5d275047eda4
                )

            [langcode] => Array
                (
                    [x-default] => en
                )

            [revision_uid] => Array
                (
                    [x-default] => 1
                )

            [revision_timestamp] => Array
                (
                    [x-default] => 1623882530
                )

            [revision_log] => Array
                (
                    [x-default] => 
                )

            [revision_default] => Array
                (
                    [x-default] => 1
                )

            [isDefaultRevision] => Array
                (
                    [x-default] => 1
                )

            [status] => Array
                (
                    [x-default] => 1
                )

            [uid] => Array
                (
                    [x-default] => 1
                )

            [title] => Array
                (
                    [x-default] => Using foldershare command line client
                )

            [created] => Array
                (
                    [x-default] => 1551298556
                )

            [changed] => Array
                (
                    [x-default] => 1623882530
                )

            [promote] => Array
                (
                    [x-default] => 1
                )

            [sticky] => Array
                (
                    [x-default] => 0
                )

            [default_langcode] => Array
                (
                    [x-default] => 1
                )

            [revision_translation_affected] => Array
                (
                    [x-default] => 1
                )

            [body] => Array
                (
                    [x-default] => Array
                        (
                            [0] => Array
                                (
                                    [value] => 
Terminal

FolderShare supports REST web services for command-line access. You can use this to upload, download, and change files and folders from a terminal window or script on a Mac, Windows, or Linux desktop, laptop, or supercomputer.

Fetch command-line tool:

  1. Download 1.4 and untar. The client requires PHP 7.0+. See installation information here
    # fetch foldershare module which includes the REST client in the 'applications' folder
    curl -OL https://seedmelab.org/sites/default/files/downloads/foldershare_php_client_1.4.tar.gz 
    tar xzf foldershare_php_client_1.4.tar.gz
    cd foldershare_php_client.1.4
    
    Key updates in the new client
    a) The client provides output in json format
    
    b) Upload/Download commands with —sync option include --delete which removes non existing files at the destination
    
    
  2. Deprecated Download 1.2.0 and unzip. The client requires PHP 7.0+. See installation information here
    # fetch foldershare module which includes the REST client in the 'applications' folder
    curl -OL https://seedmelab.org/sites/default/files/downloads/foldershare_php_client.1.1.0_gateway.zip 
    unzip foldershare_php_client.1.1.0_gateway.zip
    cd foldershare_php_client.1.1.0_gateway
    
    Key updates in the new client
    a) Parentheses and + chars are now supported in the client.
    b) mkdir command now supports create intermediate folders for a given path if it does not exist
    mkdir -p /1/2/3/4
    
    c)  Move and copy command have —wait option 
    This should be used to catch any errors, the default behavior is to return quickly before completing actually move and copy operations which are then completed in the background in later time.
    
    d) Upload commands -p option which preserves some timestamps is now the default, so it need not be included.
    
    e) Upload command  also  has —sync option
    This is not a true sync but may be used for uploading content adjacent tries. Say the upload did not work correctly the first time, in the next try this option can be used
    
  3. Deprecated  Download 1.1.0, Download 1.0.0  and unzip. The client requires PHP 7.0+. See installation information here
    # fetch foldershare module which includes the REST client in the 'applications' folder
    curl -O https://seedmelab.org/sites/default/files/downloads/foldershare_php_client.1.0_gateway.zip
    unzip foldershare_php_client.1.0_gateway.zip
    cd foldershare_php_client
    
    
  4. Type "./foldershare --help" in a terminal window to get help.

Command set

You will need this temporary site's host name and your user name and password in order to connect to this site. For instance, you can list top level folders like this:

./foldershare --host hostname --username login --password password  ls /

./foldershare --host hostname --masquerade username --apikey xyz  ls /

document.getElementById("trial-hostname").innerHTML = window.location.hostname;

Many Linux-style file and folder commands are supported, such as:

  • "ls" to list a folder's contents.
  • "stat" to get the status of a file or folder.
  • "mkdir" to make a new folder.
  • "rm" to remove a file or folder tree.
  • "rmdir" to remove an empty folder.
  • "cp" to copy a file or folder.
  • "mv" to move a file or folder.

There are a few more commands particular to web services, such as:

  • "get" to download a file or folder.
  • "put" to upload a file or folder.
  • "update" to change a file or folder's description.

Example usage

  • Login to the site
    • ./foldershare --host hostname --username login --password password document.getElementById("trial-hostname2").innerHTML = window.location.hostname;
  • Create a new folder say "myfolder" at the top/root level, visible under Personal folders through the web browser
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password mkdir   help
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password mkdir '/myfolder'
  • Upload local file to the site using the put command 
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password put   help
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password put   '/Users/amit/Desktop/omega.zip'   '/myfolder'
  • Add a description to a file using the update command
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password update   help
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password update   description   'this is metadata'   '/myfolder/omega.zip'
  • Download a folder using the get command, this will zip and download the contents if appropriate
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password get   help
    • % ./foldershare --host hostname document.getElementById("trial-hostname2").innerHTML = window.location.hostname; --username login --password password get  '/myfolder'   '/Users/john/Downloads'
[summary] => [format] => full_html ) ) ) [comment] => Array ( [x-default] => Array ( [0] => Array ( [status] => 1 [cid] => 0 [last_comment_timestamp] => 1553825844 [last_comment_name] => [last_comment_uid] => 1 [comment_count] => 0 ) ) ) ) [fields:protected] => Array ( ) [fieldDefinitions:protected] => Array ( [nid] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => integer [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => integer [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [read-only] => 1 [provider] => node [field_name] => nid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:integer [settings] => Array ( [unsigned] => 1 [size] => normal [min] => [max] => [prefix] => [suffix] => ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => ID [arguments:protected] => Array ( ) ) [read-only] => 1 [provider] => node [field_name] => nid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [uuid] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => uuid [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => uuid [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [read-only] => 1 [provider] => node [field_name] => uuid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:uuid [settings] => Array ( [max_length] => 128 [is_ascii] => 1 [case_sensitive] => ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => UUID [arguments:protected] => Array ( ) ) [read-only] => 1 [provider] => node [field_name] => uuid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [vid] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => integer [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => integer [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [read-only] => 1 [provider] => node [field_name] => vid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:integer [settings] => Array ( [unsigned] => 1 [size] => normal [min] => [max] => [prefix] => [suffix] => ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Revision ID [arguments:protected] => Array ( ) ) [read-only] => 1 [provider] => node [field_name] => vid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [langcode] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => language [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => language [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [display] => Array(2) [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => langcode [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:language [settings] => Array ( ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Language [arguments:protected] => Array ( ) ) [display] => Array ( [view] => Array ( [options] => Array(1) ) [form] => Array ( [options] => Array(2) ) ) [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => langcode [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [type] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Content type [required] => 1 [read-only] => 1 [provider] => node [field_name] => type [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:entity_reference [settings] => Array ( [target_type] => node_type [handler] => default [handler_settings] => Array(0) ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Content type [required] => 1 [read-only] => 1 [provider] => node [field_name] => type [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [revision_timestamp] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => created [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => created [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [provider] => node [field_name] => revision_timestamp [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:created [settings] => Array ( ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Revision create time [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => The time that the current revision was created. [arguments:protected] => Array ( ) ) [revisionable] => 1 [provider] => node [field_name] => revision_timestamp [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [revision_uid] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [provider] => node [field_name] => revision_uid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:entity_reference [settings] => Array ( [target_type] => user [handler] => default [handler_settings] => Array(0) ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Revision user [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => The user ID of the author of the current revision. [arguments:protected] => Array ( ) ) [revisionable] => 1 [provider] => node [field_name] => revision_uid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [revision_log] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => string_long [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => string_long [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [default_value] => Array(1) [display] => Array(1) [provider] => node [field_name] => revision_log [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:string_long [settings] => Array ( [case_sensitive] => ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Revision log message [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Briefly describe the changes you have made. [arguments:protected] => Array ( ) ) [revisionable] => 1 [default_value] => Array ( [0] => Array ( [value] => ) ) [display] => Array ( [form] => Array ( [options] => Array(3) ) ) [provider] => node [field_name] => revision_log [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [status] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [default_value] => Array(1) [display] => Array(1) [provider] => node [field_name] => status [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Published [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [default_value] => Array ( [0] => Array ( [value] => 1 ) ) [display] => Array ( [form] => Array ( [options] => Array(3) [configurable] => 1 ) ) [provider] => node [field_name] => status [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [uid] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [translatable] => 1 [default_value_callback] => Drupal\node\Entity\Node::getDefaultEntityOwner [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [display] => Array(2) [provider] => node [field_name] => uid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:entity_reference [settings] => Array ( [target_type] => user [handler] => default [handler_settings] => Array(0) ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Authored by [arguments:protected] => Array ( ) ) [translatable] => 1 [default_value_callback] => Drupal\node\Entity\Node::getDefaultEntityOwner [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => The username of the content author. [arguments:protected] => Array ( ) ) [revisionable] => 1 [display] => Array ( [view] => Array ( [options] => Array(3) ) [form] => Array ( [options] => Array(3) [configurable] => 1 ) ) [provider] => node [field_name] => uid [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [title] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => string [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => string [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [required] => 1 [translatable] => 1 [revisionable] => 1 [display] => Array(2) [provider] => node [field_name] => title [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:string [settings] => Array ( [max_length] => 255 [is_ascii] => [case_sensitive] => ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Title [arguments:protected] => Array ( ) ) [required] => 1 [translatable] => 1 [revisionable] => 1 [display] => Array ( [view] => Array ( [options] => Array(3) ) [form] => Array ( [options] => Array(2) [configurable] => 1 ) ) [provider] => node [field_name] => title [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [created] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => created [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => created [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [display] => Array(2) [provider] => node [field_name] => created [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:created [settings] => Array ( ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Authored on [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => The time that the node was created. [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [display] => Array ( [view] => Array ( [options] => Array(3) ) [form] => Array ( [options] => Array(2) [configurable] => 1 ) ) [provider] => node [field_name] => created [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [changed] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => changed [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => changed [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => changed [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:changed [settings] => Array ( ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Changed [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => The time that the node was last edited. [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => changed [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [promote] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [default_value] => Array(1) [display] => Array(1) [provider] => node [field_name] => promote [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Promoted to front page [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [default_value] => Array ( [0] => Array ( [value] => 1 ) ) [display] => Array ( [form] => Array ( [options] => Array(3) [configurable] => 1 ) ) [provider] => node [field_name] => promote [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [sticky] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [default_value] => Array(1) [display] => Array(1) [provider] => node [field_name] => sticky [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Sticky at top of lists [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [default_value] => Array ( [0] => Array ( [value] => ) ) [display] => Array ( [form] => Array ( [options] => Array(3) [configurable] => 1 ) ) [provider] => node [field_name] => sticky [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [default_langcode] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [translatable] => 1 [revisionable] => 1 [default_value] => Array(1) [provider] => node [field_name] => default_langcode [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Default translation [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => A flag indicating whether this is the default translation. [arguments:protected] => Array ( ) ) [translatable] => 1 [revisionable] => 1 [default_value] => Array ( [0] => Array ( [value] => 1 ) ) [provider] => node [field_name] => default_langcode [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [revision_default] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [storage_required] => 1 [internal] => 1 [translatable] => [revisionable] => 1 [provider] => node [field_name] => revision_default [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Default revision [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => A flag indicating whether this was a default revision when it was saved. [arguments:protected] => Array ( ) ) [storage_required] => 1 [internal] => 1 [translatable] => [revisionable] => 1 [provider] => node [field_name] => revision_default [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [revision_translation_affected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => boolean [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [read-only] => 1 [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => revision_translation_affected [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:boolean [settings] => Array ( [on_label] => Drupal\Core\StringTranslation\TranslatableMarkup [off_label] => Drupal\Core\StringTranslation\TranslatableMarkup ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Revision translation affected [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Indicates if the last edit of a translation belongs to current revision. [arguments:protected] => Array ( ) ) [read-only] => 1 [revisionable] => 1 [translatable] => 1 [provider] => node [field_name] => revision_translation_affected [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [path] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => path [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => path [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [translatable] => 1 [display] => Array(1) [computed] => 1 [provider] => path [field_name] => path [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:path [settings] => Array ( ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => URL alias [arguments:protected] => Array ( ) ) [translatable] => 1 [display] => Array ( [form] => Array ( [options] => Array(2) [configurable] => 1 ) ) [computed] => 1 [provider] => path [field_name] => path [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [menu_link] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\BaseFieldDefinition [type:protected] => entity_reference [propertyDefinitions:protected] => [schema:protected] => [indexes:protected] => Array ( ) [itemDefinition:protected] => stdClass Object ( [__CLASS__] => Drupal\Core\Field\TypedData\FieldItemDataDefinition [fieldDefinition:protected] => Drupal\Core\Field\BaseFieldDefinition [definition:protected] => Array(2) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => Drupal\Core\StringTranslation\TranslatableMarkup [description] => Drupal\Core\StringTranslation\TranslatableMarkup [revisionable] => 1 [translatable] => 1 [internal] => 1 [display] => Array(2) [computed] => 1 [provider] => token [field_name] => menu_link [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [definition:protected] => Array ( [type] => field_item:entity_reference [settings] => Array ( [target_type] => menu_link_content [handler] => default [handler_settings] => Array(0) ) ) [typedDataManager:protected] => ) [definition:protected] => Array ( [label] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Menu link [arguments:protected] => Array ( ) ) [description] => stdClass Object ( [__CLASS__] => Drupal\Core\StringTranslation\TranslatableMarkup [translatedMarkup:protected] => [options:protected] => Array ( ) [stringTranslation:protected] => [string:protected] => Computed menu link for the node (only available during node saving). [arguments:protected] => Array ( ) ) [revisionable] => 1 [translatable] => 1 [internal] => 1 [display] => Array ( [view] => Array ( [options] => Array(2) ) [form] => Array ( [options] => Array(1) ) ) [computed] => 1 [provider] => token [field_name] => menu_link [entity_type] => node [bundle] => ) [typedDataManager:protected] => ) [body] => stdClass Object ( [__CLASS__] => Drupal\field\Entity\FieldConfig [deleted:protected] => [fieldStorage:protected] => [id:protected] => node.article.body [field_name:protected] => body [field_type:protected] => text_with_summary [entity_type:protected] => node [bundle:protected] => article [label:protected] => Body [description:protected] => [settings:protected] => Array ( [display_summary] => 1 [required_summary] => ) [required:protected] => [translatable:protected] => 1 [default_value:protected] => Array ( ) [default_value_callback:protected] => [itemDefinition:protected] => [constraints:protected] => Array ( ) [propertyConstraints:protected] => Array ( ) [originalId:protected] => node.article.body [status:protected] => 1 [uuid:protected] => 9a1dbb08-4f66-4ee6-9b9c-64ad14d62fa0 [langcode:protected] => en [third_party_settings:protected] => Array ( ) [_core:protected] => Array ( [default_config_hash] => Ay3b2hq42cpQTFB_lNu8S2ZxuVIY6-dlBsc7vLeJ-YY ) [trustedData:protected] => [entityTypeId:protected] => field_config [enforceIsNew:protected] => [typedData:protected] => [cacheContexts:protected] => Array ( ) [cacheTags:protected] => Array ( ) [cacheMaxAge:protected] => -1 [_serviceIds:protected] => Array ( ) [_entityStorages:protected] => Array ( ) [dependencies:protected] => Array ( [config] => Array ( [0] => field.storage.node.body [1] => node.type.article ) [module] => Array ( [0] => text ) ) [isSyncing:protected] => [isUninstalling:Drupal\Core\Config\Entity\ConfigEntityBase:private] => ) [comment] => stdClass Object ( [__CLASS__] => Drupal\field\Entity\FieldConfig [deleted:protected] => [fieldStorage:protected] => [id:protected] => node.article.comment [field_name:protected] => comment [field_type:protected] => comment [entity_type:protected] => node [bundle:protected] => article [label:protected] => Comments [description:protected] => [settings:protected] => Array ( [default_mode] => 1 [per_page] => 50 [form_location] => 1 [anonymous] => 0 [preview] => 1 ) [required:protected] => [translatable:protected] => 1 [default_value:protected] => Array ( [0] => Array ( [status] => 2 [cid] => 0 [last_comment_name] => [last_comment_timestamp] => 0 [last_comment_uid] => 0 [comment_count] => 0 ) ) [default_value_callback:protected] => [itemDefinition:protected] => [constraints:protected] => Array ( ) [propertyConstraints:protected] => Array ( ) [originalId:protected] => node.article.comment [status:protected] => 1 [uuid:protected] => bbf7cd4f-3283-4ef1-ba81-c53b95930048 [langcode:protected] => en [third_party_settings:protected] => Array ( ) [_core:protected] => Array ( [default_config_hash] => r-hrxwbKKXBKQnBefGjXNSdU00u2fPvMWEykGRHqd10 ) [trustedData:protected] => [entityTypeId:protected] => field_config [enforceIsNew:protected] => [typedData:protected] => [cacheContexts:protected] => Array ( ) [cacheTags:protected] => Array ( ) [cacheMaxAge:protected] => -1 [_serviceIds:protected] => Array ( ) [_entityStorages:protected] => Array ( ) [dependencies:protected] => Array ( [config] => Array ( [0] => field.storage.node.comment [1] => node.type.article ) [module] => Array ( [0] => comment ) ) [isSyncing:protected] => [isUninstalling:Drupal\Core\Config\Entity\ConfigEntityBase:private] => ) [field_image] => stdClass Object ( [__CLASS__] => Drupal\field\Entity\FieldConfig [deleted:protected] => [fieldStorage:protected] => [id:protected] => node.article.field_image [field_name:protected] => field_image [field_type:protected] => image [entity_type:protected] => node [bundle:protected] => article [label:protected] => Image [description:protected] => [settings:protected] => Array ( [file_directory] => [date:custom:Y]-[date:custom:m] [file_extensions] => png gif jpg jpeg [max_filesize] => [max_resolution] => [min_resolution] => [alt_field] => 1 [title_field] => [alt_field_required] => 1 [title_field_required] => [default_image] => Array ( [uuid] => [alt] => [title] => [width] => [height] => ) [handler] => default:file [handler_settings] => Array ( ) ) [required:protected] => [translatable:protected] => 1 [default_value:protected] => Array ( ) [default_value_callback:protected] => [itemDefinition:protected] => [constraints:protected] => Array ( ) [propertyConstraints:protected] => Array ( ) [originalId:protected] => node.article.field_image [status:protected] => 1 [uuid:protected] => 0e8f5c0f-f0ca-4dc7-b610-0962328d04e7 [langcode:protected] => en [third_party_settings:protected] => Array ( ) [_core:protected] => Array ( [default_config_hash] => tgJzhA7Swh4M_gWU5FwFe5lPxPj5rebpMbvhpdNrERs ) [trustedData:protected] => [entityTypeId:protected] => field_config [enforceIsNew:protected] => [typedData:protected] => [cacheContexts:protected] => Array ( ) [cacheTags:protected] => Array ( ) [cacheMaxAge:protected] => -1 [_serviceIds:protected] => Array ( ) [_entityStorages:protected] => Array ( ) [dependencies:protected] => Array ( [config] => Array ( [0] => field.storage.node.field_image [1] => node.type.article ) [module] => Array ( [0] => image ) ) [isSyncing:protected] => [isUninstalling:Drupal\Core\Config\Entity\ConfigEntityBase:private] => ) [field_tags] => stdClass Object ( [__CLASS__] => Drupal\field\Entity\FieldConfig [deleted:protected] => [fieldStorage:protected] => [id:protected] => node.article.field_tags [field_name:protected] => field_tags [field_type:protected] => entity_reference [entity_type:protected] => node [bundle:protected] => article [label:protected] => Tags [description:protected] => Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio" [settings:protected] => Array ( [handler] => default:taxonomy_term [handler_settings] => Array ( [target_bundles] => Array ( [tags] => tags ) [sort] => Array ( [field] => _none ) [auto_create] => 1 ) ) [required:protected] => [translatable:protected] => 1 [default_value:protected] => Array ( ) [default_value_callback:protected] => [itemDefinition:protected] => [constraints:protected] => Array ( ) [propertyConstraints:protected] => Array ( ) [originalId:protected] => node.article.field_tags [status:protected] => 1 [uuid:protected] => fda0bef4-60b7-47b4-9b5a-0736c2fc6da8 [langcode:protected] => en [third_party_settings:protected] => Array ( ) [_core:protected] => Array ( [default_config_hash] => QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw ) [trustedData:protected] => [entityTypeId:protected] => field_config [enforceIsNew:protected] => [typedData:protected] => [cacheContexts:protected] => Array ( ) [cacheTags:protected] => Array ( ) [cacheMaxAge:protected] => -1 [_serviceIds:protected] => Array ( ) [_entityStorages:protected] => Array ( ) [dependencies:protected] => Array ( [config] => Array ( [0] => field.storage.node.field_tags [1] => node.type.article [2] => taxonomy.vocabulary.tags ) ) [isSyncing:protected] => [isUninstalling:Drupal\Core\Config\Entity\ConfigEntityBase:private] => ) ) [languages:protected] => [langcodeKey:protected] => langcode [defaultLangcodeKey:protected] => default_langcode [activeLangcode:protected] => x-default [defaultLangcode:protected] => en [translations:protected] => Array ( [x-default] => Array ( [status] => 1 ) ) [translationInitialize:protected] => [newRevision:protected] => [isDefaultRevision:protected] => 1 [entityKeys:protected] => Array ( [bundle] => article [id] => 3 [revision] => 635 [uuid] => e21e171b-656a-4f88-b5e4-5d275047eda4 ) [translatableEntityKeys:protected] => Array ( [label] => Array ( [x-default] => Using foldershare command line client ) [langcode] => Array ( [x-default] => en ) [status] => Array ( [x-default] => 1 ) [published] => Array ( [x-default] => 1 ) [uid] => Array ( [x-default] => 1 ) [owner] => Array ( [x-default] => 1 ) [default_langcode] => Array ( [x-default] => 1 ) [revision_translation_affected] => Array ( [x-default] => 1 ) ) [validated:protected] => [validationRequired:protected] => [loadedRevisionId:protected] => 635 [revisionTranslationAffectedKey:protected] => revision_translation_affected [enforceRevisionTranslationAffected:protected] => Array ( ) [fieldsToSkipFromTranslationChangesCheck:protected] => Array ( ) [entityTypeId:protected] => node [enforceIsNew:protected] => [typedData:protected] => [cacheContexts:protected] => Array ( ) [cacheTags:protected] => Array ( ) [cacheMaxAge:protected] => -1 [_serviceIds:protected] => Array ( ) [_entityStorages:protected] => Array ( ) [isSyncing:protected] => )