H^@8ؿ@(Ȩ@hШ@H@categoryuilderVJOURNALameter setPasswordr releaseLockockgetRecoveryKeyߢ>b __constructidߢ>b __constructe buildBodyDataNq initializehߢ>b __constructde setPropertyyrߢ>b __constructr changeLockerkߢ>b __constructypt getFileIdption startElementeߢ>b __constructy `,@P`Uߢ>b __constructter setMountPointhxD3w providerslDAV}Mmimetyperation getShares getBackenddNq initializegth getOptionerd preloadSharesupdateCalendar performMoveep tagExistsmeter changeLocknoy' croppedLayout=A remote_servere getNodeTypeseb\kj COMPARE_INnT "enpropFindHandler isWrapperOfherߢ>b __constructsr propPatchilder text/calendar getChildeass getOperation/ Pw systemtagture getUpdaterchergetOwnerdAV\ childExistsctp"@@˨@;@@ getProviderhasQuotatsh8\@h@@p'@X)@ߢ>b __constructNq initializelder getStorager: ^xml:langeIdsk> 8.P`U` ntߢ>b __constructter W(M deleteinroomeruserToPrincipalߢ>b __constructߢ>b __constructrgetShareFolder httpPropFindtߢ>b __constructCaddHookstion\ߢ>b __constructons isSharablen!4d<@tgj'@%@@@hs@@ getShareTypea /usr/sbin2 getChildrenonߢ>b __constructer7:qOeplo HY\g_`STߢ>b __constructi\concatIVkeys updateIndexdermultiKeyEncrypt postDeleteate applyShareAcl getIntListSize normalizePath setShareOwnerATTENDEEeAcl beforeMoveetergetInternalPathcacheDirectoryߢ>b __constructth setPassphrasecategorypath getPluginInfor isDeletableiongetFloateegetPermissionsNq initializeonhgetMTimeLOWId getStoragesthcanChangeAvatar'3filetypecker return true. If the Widget * does not declare `register_controls()`, `has_own_method()` will return false. * * Example #2 - both $method_name and $base_class_name are passed * In this example, the widget class inherits from a base class `Widget_Base`, and the base implements * `register_controls()` to add certain controls to all widgets inheriting from it. `has_own_method()` is called by * the widget, with the string 'register_controls' passed as the first parameter, and 'Elementor\Widget_Base' (its full name * including the namespace) passed as the second parameter. If the widget class implements `register_controls()`, * `has_own_method` will return true. If the widget class DOESN'T implement `register_controls()`, it will return * false (because `Widget_Base` is the declaring class for `register_controls()`, and not the class that called * `has_own_method()`). * * @since 3.1.0 * * @param string $method_name * @param string $base_class_name * * @return bool True if the method was declared by the current instance, False if it was inherited. */ public function has_own_method( $method_name, $base_class_name = null ) { try { $reflection_method = new \ReflectionMethod( $this, $method_name ); // If a ReflectionMethod is successfully created, get its declaring class. $declaring_class = $reflection_method->getDeclaringClass(); } catch ( \Exception $e ) { return false; } if ( $base_class_name ) { return $base_class_name !== $declaring_class->name; } return get_called_class() === $declaring_class->name; } }