All Projects → sergant210 → Modhelpers

sergant210 / Modhelpers

Library of the helpfull functions for MODX

Projects that are alternatives of or similar to Modhelpers

laravel-helper-functions
Laravel-specific and pure PHP Helper Functions.
Stars: ✭ 106 (+231.25%)
Mutual labels:  functions, helpers
php-helpers
An extensive set of PHP helper functions and classes.
Stars: ✭ 27 (-15.62%)
Mutual labels:  functions, helpers
Microcule
SDK and CLI for spawning streaming stateless HTTP microservices in multiple programming languages
Stars: ✭ 454 (+1318.75%)
Mutual labels:  functions
Introduction To Programming With Matlab
Coursera Course: Introduction to Programming 👩‍💻 with MATLAB ~by Vanderbilt University 🎓
Stars: ✭ 23 (-28.12%)
Mutual labels:  functions
Actor
A type-safe Actor class and WiredActor for sending functions as messages
Stars: ✭ 16 (-50%)
Mutual labels:  functions
Reattempt
🤞 Give your functions another chance
Stars: ✭ 570 (+1681.25%)
Mutual labels:  functions
Phoenix routes js
Phoenix routes helpers in JavaScript code.
Stars: ✭ 17 (-46.87%)
Mutual labels:  helpers
Nuclio
High-Performance Serverless event and data processing platform
Stars: ✭ 4,213 (+13065.63%)
Mutual labels:  functions
React Native Helpers
All helpers in one; iPhone series support, dimensions helper, hasNotch helper, normalize text helper and text helpers for React Native with very easy useEasy to use & awesome helpers for React Native.
Stars: ✭ 31 (-3.12%)
Mutual labels:  helpers
Logging Helpers
Basic template helpers for printing messages out to the console. Useful for debugging context in templates. Should work with any template engine.
Stars: ✭ 5 (-84.37%)
Mutual labels:  helpers
Functions.js
📦 A hub of numerous functions with various functionalities
Stars: ✭ 22 (-31.25%)
Mutual labels:  functions
Fission
Fast and Simple Serverless Functions for Kubernetes
Stars: ✭ 6,646 (+20668.75%)
Mutual labels:  functions
Styled Map
A super simple way to map props to styles with Styled Components ✨
Stars: ✭ 582 (+1718.75%)
Mutual labels:  helpers
Threef.js
three.js addon, to produce almost infinite many time-varying geometries / buffer geometries with functions (cylindrical coordinates)
Stars: ✭ 19 (-40.62%)
Mutual labels:  functions
Dispatch
Dispatch is a framework for deploying and managing serverless style applications.
Stars: ✭ 529 (+1553.13%)
Mutual labels:  functions
Tsargs
TypeScript utility types for function arguments
Stars: ✭ 23 (-28.12%)
Mutual labels:  functions
Laravel Helpers
An extensive set of Laravel framework helper functions and collection macros.
Stars: ✭ 407 (+1171.88%)
Mutual labels:  helpers
Openwhisk
Apache OpenWhisk is an open source serverless cloud platform
Stars: ✭ 5,499 (+17084.38%)
Mutual labels:  functions
Immutable
Missing non-mutating functions in Swift
Stars: ✭ 16 (-50%)
Mutual labels:  functions
Useful Functions
Stars: ✭ 31 (-3.12%)
Mutual labels:  functions

modHelpers

Library of the helpfull functions for MODX. Most of these functions can be used by the template engines. You can easily extend this library simply by specifying your classes in the corresponding system settings.

Available functions:

  • abort() - to redirect to the error or unauthorized page.
  • app() - gets the available container instance.
  • array_empty() - checks whether a variable is an empty array.
  • array_notempty() - checks whether a variable is an array and not empty.
  • array_is_assoc() - checks whether a variable is an associative array.
  • array_trim() - strips whitespace (or specified characters) from the beginning and the end of an array values.
  • array_ltrim() - strips whitespace (or specified characters) from the beginning of an array values.
  • array_rtrim() - strips whitespace (or specified characters) from the end of an array values.
  • url() - makes an url. Alias of the method $modx->makeUrl().
  • cache() - manages the MODX cache.
  • can() - returns true if user has the specified policy permission. Can be used instead of $modx->hasPermission().
  • children() - gets all of the child resource ids for a given resource. The short call of $modx->getChildIds().
  • chunk() - gets the specified chunk or file. Can be used instead of $modx->getChunk().
  • collection() - to work with collections.
  • columns() - gets select columns from a specific class for building a query. Can be used instead of xPDO::getSelectColumns().
  • config() - manages the config settings.
  • context() - gets the specified property of the current context. By default, returns the key.
  • CSRF protection - protection from cross-site request forgery attacks.
  • css() - register CSS to be injected inside the HEAD tag of a resource.
  • dd() - dump the passed variables and end the script.
  • default_if() - returns default value if a given value equals null or the specified value.
  • dump() - dump the passed variables.
  • echo_br - equivalent to echo 'some text' . "<br>".
  • echo_nl - equivalent to echo 'some text' . PHP_EOL. i.e. adds the end of line symbol or the specified value.
  • email() - sends an email.
  • email_user() - sends an email to the specified user.
  • escape() - escapes the provided string using the platform-specific escape character.
  • exec_bg_script() - executes php script in the background on both Windows and Unix.
  • explode_ltrim() - combines two functions - explode and ltrim.
  • explode_rtrim() - combines two functions - explode and rtrim.
  • explode_trim() - combines two functions - explode and trim.
  • faker() - creates a faked data.
  • filter_data() - filters the array according to the specified rules.
  • first() - returns the first not null parameter.
  • forward() - to forward the request to another resource without changing the URL. The short call of $modx->forward().
  • has_parent() - checks the presence of the specified parent(s).
  • html() - registers HTML to be injected inside the HEAD tag or before the closing BODY tag.
  • html_attributes() - prepares the HTML attributes to output from an array.
  • img() - prepares the HTML tag "img".
  • is_ajax() - returns true if the current request is asynchronous (ajax).
  • is_auth() - determines if the user is authenticated in a specific context.
  • is_desktop() - desktop detection.
  • is_email() - validates the email. Can be used to validate the form data.
  • is_guest() - determines if the user is a guest. Checks equality $modx->user->id == 0
  • is_even() - checks whether a variable is even.
  • is_odd() - checks whether a variable is odd.
  • is_mobile() - mobile detection.
  • is_tablet() - tablet detection.
  • is_url() - validates the url.
  • lang() - to work with lexicon records. Can be used instead of $modx->lexicon().
  • log_error() — logs to the error log for the ERROR log level.
  • log_warn() — logs to the error log for the WARN log level.
  • log_info() — logs to the error log for the INFO log level.
  • log_debug() — logs to the error log for the DEBUG log level.
  • load_model() - loads a model for a custom table.
  • login() - force login the specified user to the current context.
  • logout() - force logout the current user.
  • memory() - returns the formatted string of the amount of memory allocated to PHP.
  • null_if() - returns NULL if the given values are equal.
  • object() - to work with objects of MODX.
  • object_exists() - checks if the specified object exists.
  • optional() - provides access to optional objects.
  • parents() - gets all of the parent resource ids for a given resource. The short call of $modx->getParentIds().
  • parse() - parses a string using an associative array of replacement variables.
  • pls() - to work with placeholders.
  • pls_delete() - removes the specified placeholders.
  • print_d() - prints the value and dies. Convert a given value to the string format, prints it and stops the script execution.
  • print_str() - extends the print_r function. Convert a given value to the string format and print it.
  • processor() - runs the specified processor. Equivalent to the $modx->runProcessor().
  • quote() - quote the string.
  • query() - works with raw SQL queries.
  • redirect() - redirect to the url or site page if the id is passed. Wraps the $modx->redirect() and $modx->makeUrl().
  • request() - for HTTP request management.
  • resource() - works with a resource object.
  • resource_exists() - checks the specified resource exists.
  • resource_id() | res_id() - gets the id of the current resource. Returns the value of $modx->resource->id.
  • resources() - works with a resource collection.
  • response() - for response management.
  • script() - registers JavaScript to be injected inside the HEAD tag or before the closing BODY tag. Available the script attributes "async" and "defer".
  • session() - manages the session. You can use the dot notation.
  • session_pull() - gets the value of a given key and then unsets it.
  • snippet() - runs the specified snippet from DB or file. The result can be cached.
  • str_between() - gets a substring between two tags.
  • str_clean() - sanitizes the string. Strips HTML tags and removes the specified characters. It's like the modX::sanitizeString() method.
  • str_contains() - determines if a given string contains a given substring.
  • str_concat() - concatenates passed string arguments.
  • str_ends() - determines if a given string ends with a given substring.
  • str_limit() - limits the number of characters in a string.
  • str_match() - determines if a given string matches a given pattern.
  • str_starts() - determines if a given string starts with a given substring.
  • string() - wraps the string for further manipulation.
  • switch_context() - switches the context according to the conditions.
  • table_name() - gets the table name of the specified class. Can be used instead of xPDO::getTableName().
  • template_id() - gets the template id of the current resource. Returns the value of $modx->resource->template.
  • tag_encode() - converts MODX tag chars to corresponding HTML codes.
  • tag_decode() - decodes HTML codes back to MODX tag chars.
  • timer - time logger.
  • tv() - gets the specified TV of the current resource.
  • user() - gets a user object or an array of user's data.
  • user_exists() - checks the specified user exists.
  • user_id() - gets the id of the current user. Returns the value of $modx->user->id.
  • users() - works with a user collection.

System settings for class extending

  • modhelpers_cacheManagerClass — custom cache manager class.
  • modhelpers_collectionClass — custom collection class.
  • modhelpers_containerClass — custom container class.
  • modhelpers_loggerClass — custom logger class.
  • modhelpers_mailerClass — custom mailer class.
  • modhelpers_modelBuilderClass — custom model builder class.
  • modhelpers_modelColumnClass — custom model column class.
  • modhelpers_objectClass — custom object class.
  • modhelpers_optionalClass — name of the custom Optional class.
  • modhelpers_queryClass — custom query class.
  • modhelpers_requestClass — custom request class.
  • modhelpers_responseManagerClass — name of the response manager class.
  • modhelpers_stringClass — custom String class.
  • modhelpers_timerClass — custom Timer class.
  • modhelpers_varDumperClass — class name for the dump and dd functions.

Examples

Check the user exists

if (user_exists(['email'=>'[email protected]']) {
    // Exists
}

Get the data from the cache

//Gets the data from the file *core/cache/my_data/key.cache.php*. 
$value = cache('key', 'my_data');
// Or 
$value = cache()->get('key', 'my_data');

Send email

email('[email protected]', 'Subject','Email content');
// To the user
email_user('admin', $subject, $content); 
// or use the user id
email_user(5, $subject, chunk($tplEmail));
// or like that
email()->to('[email protected]')->cc('[email protected]')->subject('Hello')->content('Content')->attach('path/to/file.jpg')->send();
// or send to queue
email()->to('[email protected]')->cc('[email protected]')->subject('Hello')->content('Content')->attach('path/to/file.jpg')->save();
// and then send from the queue
email()->saved();

Run a snippet and save the result to the cache

$output = snippet('mySnippet', $params, 60); // store the snippet result for 60 seconds

Run a snippet from file

$output = snippet(MODX_CORE_PATH . 'elements/snippets/mysnippet.php', $params);

Get a chunk from file

$output = chunk(MODX_CORE_PATH . 'elements/chunks/mychunk.html', $placeholders);

Redirect

redirect($url);
//To the resource with the id = 5
redirect(5);

The latest resource

$resourceObject = resource()->last(); // Resource object
$resourceArray = resource()->last()->toArray(); // Resource data as array

The last 10 resources

$resObjects = resources()->last(10); 

Array of the resource pagetitles of the parent with the id = 20.

$titles = resources()->where(['parent'=>20])->get('pagetitle'); // array('pagetitle 1', 'pagetitle 2', 'pagetitle 3')

Use a Closure for child resources of the category with the id = 20.

return resources()->where(['id:IN'=>children(20)])->each(function($resource, $idx) {return "<div>{$idx}. " . $resource['pagetitle'] . "</div>";}); 

Set a value to the session

session(['key1.key2', 'value']); // => $_SESSION['key1']['key2'] = $value;
# Disable the dot notation parsing
session(['key1.key2' => 'value'], true); // ==> $_SESSION['key1.key2'] = $value;

Get the value from session

$value = session('key1.key2');  // $value = $_SESSION['key1']['key2']
# Disable the dot notation parsing
$value = session('key1.key2', 'default', true); // ==> $value = isset($_SESSION['key1.key2']) ? $_SESSION['key1.key2'] : 'default';

Validates the email

if (is_email($_POST['email'])) {
   // Valid
}

Remove child resources of the resource with the id = 10

resources()->where(['parent'=>10])->remove();

Count blocked users

$count = users()->profile()->where(['Profile.blocked'=>1])->count();

Load script with the async attribute

script('/path/to/script.js', 'async'); // <script async type="text/javascript" src="/path/to/script.js"></script>

Get an array of users

// Use the prepared query
$userArray = query('select * from ' . table_name('modUser'). ' WHERE id = ?')->execute( (int) $_POST['user_id']);

Log error to the error log

log_error($array); // The array will be converted to string using the print_r() function.
log_error($message, 'HTML'); // Show message on the page.

Get the list of the pagetitles

return resources()->where(['id:IN'=>children(5)])->each(function($resource, $idx){ return "<li>{$idx}. ".$resource['pagetitle']."</li>";});

Get users which are members of the "Manager" group

$usersArray = users()->members('Managers')->toArray();
// Get all users from "ContentManagers" and "SaleManagers" groups 
$users = users()->members('%Managers')->get();
foreach($users as $user) {
  echo $user->username;
}

Add the first ten users to the "Manager" group

users()->whereIn('id',range(1,10))->joinGroup('Manager');

Make a list of faked news (using a snippet)

return collection(10)->each(function($item, $idx, $modx){return "<div>" . faker()->date() . img(faker()->imageUrl(500,300),['class'=>'img-news']) . '<br>' . faker()->text(700) . '</div>';});

Russian documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].