ACIL FM
Dark
Refresh
Current DIR:
/home/mhhtmff/www/site/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/fp/core
/
home
mhhtmff
www
site
wp-content
plugins
sitepress-multilingual-cms
vendor
wpml
fp
core
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
Functor
-
chmod
Open
Rename
Delete
Invoker
-
chmod
Open
Rename
Delete
monoid
-
chmod
Open
Rename
Delete
traits
-
chmod
Open
Rename
Delete
Cast.php
798 B
chmod
View
DL
Edit
Rename
Delete
Debug.php
1.37 MB
chmod
View
DL
Edit
Rename
Delete
Either.php
5.29 MB
chmod
View
DL
Edit
Rename
Delete
Filter.php
1008 B
chmod
View
DL
Edit
Rename
Delete
Fns.php
15.17 MB
chmod
View
DL
Edit
Rename
Delete
FP.php
1.81 MB
chmod
View
DL
Edit
Rename
Delete
functions.php
6.35 MB
chmod
View
DL
Edit
Rename
Delete
Json.php
782 B
chmod
View
DL
Edit
Rename
Delete
Lens.php
1.89 MB
chmod
View
DL
Edit
Rename
Delete
Logic.php
5.13 MB
chmod
View
DL
Edit
Rename
Delete
Lst.php
11.88 MB
chmod
View
DL
Edit
Rename
Delete
Math.php
892 B
chmod
View
DL
Edit
Rename
Delete
Maybe.php
4.47 MB
chmod
View
DL
Edit
Rename
Delete
Obj.php
15.42 MB
chmod
View
DL
Edit
Rename
Delete
Promise.php
1.46 MB
chmod
View
DL
Edit
Rename
Delete
Relation.php
1.78 MB
chmod
View
DL
Edit
Rename
Delete
Strings.php
5.39 MB
chmod
View
DL
Edit
Rename
Delete
strings_functions.php
1.1 MB
chmod
View
DL
Edit
Rename
Delete
system.php
1.78 MB
chmod
View
DL
Edit
Rename
Delete
SystemClass.php
220 B
chmod
View
DL
Edit
Rename
Delete
Type.php
2.98 MB
chmod
View
DL
Edit
Rename
Delete
Undefined.php
212 B
chmod
View
DL
Edit
Rename
Delete
Validator.php
974 B
chmod
View
DL
Edit
Rename
Delete
Wrapper.php
908 B
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/mhhtmff/www/site/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/fp/core/system.php
<?php namespace WPML\FP\System; /** * Returns a filter function to filter a collection by the given key * Use like: * $theCollection->map( getFilterFor( 'my-key' )->using( santatizeString() )->defaultTo( '' ) ) * This will filter the collection item with a key of 'my-key' using the 'FILTER_SANITIZE_STRING'. * If the key doesn't exist it defaults to an empty string. * * defaultTo can be a value or a callable that returns a value * * @param string $key * * @return _Filter */ function getFilterFor( $key ) { return new _Filter( $key ); } /** * Returns a function of the defined type that can then be used to map * over a variable. * * @param int $filter - Filter type same as for php filter_var function * * @return \Closure */ function filterVar( $filter ) { return function ( $var ) use ( $filter ) { return filter_var( $var, $filter ); }; } /** * returns a function that will sanitize a string. * @return \Closure */ function sanitizeString( $flags = ENT_QUOTES ) { return function( $value ) use ( $flags ) { return is_string( $value ) || is_numeric( $value ) ? str_replace( '&', '&', htmlspecialchars( strip_tags( $value ), $flags ) ) : false; }; } /** * Returns a validator function to filter a collection by the given key * Use like: * map( getValidatorFor( 'my-key' )->using( Logic::isNotNull() )->error( 'It was false' ) ), $myCollection) * This will run the validator on the collection item with a key of 'my-key' and return Either::Right * containing the given collection or Either::Left containing the error depending if the supplied * using function returns true or false * * error can be a value or a callable that returns a value * * @param string $key * * @return _Validator */ function getValidatorFor( $key ) { return new _Validator( $key ); }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply