Libraries tagged by exclude
smaex/sitemap-excludes
50 Downloads
Excludes selected products from XML sitemaps in Magento 2.
servebolt/composer-autoload-exclude
42 Downloads
Exclude files/namespaces from composer autoload.
benbanfa/exclude-composer-assets
204 Downloads
benbanfa/exclude-composer-assets
zaratedev/laravel-excludable
6 Downloads
Exclude the provided elements from the query results.
restruct/silverstripe-newsgrid
503 Downloads
Manage News items from a Gridfield to prevent cluttering the sitetree
restruct/silverstripe-gridfieldsitetreebuttons
11 Downloads
Modifies GridFields & GridField detail forms to use standard page edit form (with versioning, history & settings). Simple alternative for versionedgridfield.
micschk/silverstripe-bloggrid
9 Downloads
Manage Blog items from a Gridfield to prevent cluttering the sitetree
webmakkers/magento-module-deploy
170 Downloads
Excludes unused themes from the static content deploy
webictbyleo/odoid
0 Downloads
Deterministic mixed-radix ID encoding — maps integers to 6, 7, or 8-character alphanumeric strings. Ambiguous characters I, L, O excluded.
singlequote/laravel-text-parser
199 Downloads
A package to replace words in a text with values from a array. Also supports aliases and excluded properties
shutter/woocommerce-role-based-coupons
491 Downloads
Exclude Wordpress User Roles from using certain WooCommerce Coupons.
sailing2014/chat-api-sdk-php
6 Downloads
The SDK allows you to receive and send messages through your WhatsApp account. [Sign up now](https://app.chat-api.com/) The Chat API is based on the WhatsApp WEB protocol and excludes the ban both when using libraries from mgp25 and the like. Despite this, your account can be banned by anti-spam system WhatsApp after several clicking the "block" button.
rah/rah_unlog_me
3 Downloads
Excludes site admins from Textpattern CMS visitor logs
pyro/custom-install
179 Downloads
Provides extra PyroCMS install configurables, actions and commands. Exclude/Include modules, extensions or seeds from being installed, hooks, callbacks etc
numeno/api-art-rec
2 Downloads
## Introduction Use the Numeno Article Recommender API to receive a curated selection of articles from across the web. See below for the steps to creating a Feed, as well as an introduction to the top-level concepts making up the Article Recommender API. ## Steps to creating a Feed 1. Create a Feed - [`/feeds`](create-feed) 2. Create a number of Stream queries associated with the Feed - [`/feeds/:feedId/streams`](create-stream) 3. Pull from the Feed as the Feed refreshes - [`/feeds/:feedId/articles`](get-articles-in-feed) 4. Use those Article IDs to look up metadata for the Articles -[`/articles/:id`](get-article-by-id) 5. Visit the Article links and render to your server DB or client app. ## Sources, Articles and Topics A **Source** is a place where Articles come from, typically a website, a blog, or a knowledgebase endpoint. Sources can be queried for activity via the [`/sources`](get-sources) endpoint. Beyond the Sources Numeno regaularly indexes, additional Sources can be associated with Stream queries, and Sources can be `allowlist`/`denylist`'d. **Articles** are the documents produced by Sources, typically pages from a blogpost or website, articles from a news source, or posts from a social platform or company intranet. See the [`/articles`](search-articles) endpoint. **Topics** - Numeno has millions of Topics that it associates with Articles when they are sourced. Topics are used in Stream queries, which themselves are composed to create Feeds. Get topics via the [`/topics`](get-topics) endpoint. ## Feeds **A Feed is a collection of Streams.** Feeds are configured to refresh on a regular schedule. No new Articles are published to a Feed except when it's refreshed. Feeds can be refreshed manually if the API Key Scopes allow. You can ask for Articles chronologically or by decreasing score. You can also limit Articles to a date-range, meaning that you can produce Feeds from historical content. Interact with Feeds via the [`/feeds`](create-feed) endpoint. ## Streams Think of a **Stream** as a search query with a "volume control knob". It's a collection of Topics that you're interested and a collection of Sources you'd explicitly like to include or exclude. Streams are associated with a Feed, and a collection of Streams produce the sequence of Articles that appear when a Feed is refreshed. The "volume control knob" on a Stream is a way to decide how many of the search results from the Stream query are included in the Feed. Our searches are "soft", and with a such a rich `Article x Topic` space to draw on, the "volume control" allows you to put a cuttoff on what you'd like included. Streams are a nested resource of `/feeds` - get started by explorting [`/feeds/:feedId/streams`](create-stream).