Search
You can find the results of your search below.
Fulltext results:
- Friendica Storage Backend Addon development
- '%%$data%%'' to position ''%%$reference%%'', or a new position if ''%%$reference%%'' is empty. * ''%%... ister(string $class)%%''. You have to register a new hook in your addon, listening on ''%%storage_inst... s your storage class name, you have to instance a new instance of your ''%%Friendica\Core\Storage\Capab... cally how tests should work in the future** Each new Storage class should be added to the test-environ
- Settings
- ng modes: * **open**: Everybody can register a new account and start using it right away. * **requires approval**: Everybody can register a new account, but the admin has to approve it before it can be used. * **closed**: No new registrations are possible. == Invitation based ... ]] If selected backend has configurable options, new fields are shown here. == Filesystem: Storage ba
- Updating Friendica
- ====== Updating Friendica ====== When a new version of Friendica is published a release note((on [[htt... oo many rows to handle manually, you can create a new table with the same structure as the table with d... . SQL command CREATE TABLE <table_name>_new <rest of the CREATE TABLE>; INSERT IGNORE INTO <table_name>_new SELECT * FROM <table_name>; DROP TABLE <table
- Friendica API
- default: "false") ==== POST api/direct_messages/new==== Deprecated Twitter direct message submission... o do this, and offer a solution to add photo as a new photo with the new rights instead. === Parameters === * ''%%photo_id%%'' (optional): if specified ... s base64, only optional if photo_id is specified (new upload must have media) * ''%%desc%%'' (optiona
- Twitter API
- ocs/direct-messages/custom-profiles/api-reference/new-profile|POST custom_profiles/new.json]] * [[https://developer.twitter.com/en/docs/direct-messages/se... rect-messages/sending-and-receiving/api-reference/new-event|POST direct_messages/events/new (message_create)]] * [[https://developer.twitter.com/en/docs/d
- Themes
- he easiest way to cover your needs is to create a new theme, inherit most of the properties of the pare... e. *duepunto zero* and *vier* allow easily to add new theme variation. We will go through the process of creating a new variation for *duepunto zero*. The same (well al... rset is done in a combination of a template for a new form in the settings and aome functions in the th
- How to Create a Bot
- ill be done in the following steps: * Create a new user * Add the RSS feed as contact * Promote ... ===== Create a User ===== You can either create a new user by registering a new account from the nodes registration page. Or you can create a new sub-account from your user settings "Manage Accou
- Friendica Administration
- node. Some of the administrative features, mostly new ones, have not made it into the panel yet, but th... le ===== The Friendica Project aims to release a new stable version of the platform once every quarter... friendi.ca]] account. The development cycle of a new release starts with the ''stable'' release of the... d into the ''stable'' branch and thus becomes the new release. The Friendica team does not advise you
- Forums
- iles. ===== Managing Accounts ===== To create a new linked account that can be used as a forum, log i... s. Here you can register additional accounts with new nicknames that will be linked to your primary account. You may appoint a delegate to manage your new account (e.g. forum page). The Delegates section ... accounts. ===== Types of Accounts ===== On the new account, visit the Settings -> Account page. Towa
- Creating posts
- category names separated by a comma to file your new post. The Big Empty Text area is where you write your new post. You can simply enter your text there and click the "Share" button, and your new post will be public on your profile page and shar... nto a Google Maps search. That's why a note like "New York" or "10004" is already enough. <p style="cle
- Friendica Addon development
- $html, 'submit' => DI::l10n()->t('Generate new key'), ]; </code> == With conditional submit butt... erwise. ==== follow ==== Called before adding a new contact for a user to handle non-native network r... 'tagged', $arr); Hook::callAll('post_local_end', $new_item); Hook::callAll('put_item_in_cache', $hook_d... == view/js/main.js ==== <code> document.dispatchEvent(new Event('postprocess_liveupdate')); </code> >
- Events
- nd backwards. And return to *today*. To create a new event, you can either follow the link "Create New Event" or double click on the desired box in the cal... re the one who created the event. ===== Create a new Event ===== Following one of the methods mention... an choose who shall receive it, as with a regular new posting. The recipients will see the posting abou
- How to post to Lemmy from your Friendica account
- iverse]] you can subscribe to Lemmy forums, start new threads in the forums and comment to threads of o... lowlist. ===== Post to Lemmy ===== ==== Start a new thread ==== If you want to start a new thread on a Lemmy forum you address it like forum in Friendica... he Network stream of your Friendica account. Once new threads are created at Lemmy, they will be distri
- Domain-Driven-Design
- em redundancy free. Before: <code php> $model = new Model(\Friendica\DI::dba()); $model->id = 1; $mod... public function create() { return new Model($this->dba); } } $model = \Friendi... public function create() { return new Model($this->dba); } } $model = \Friend... public function create() { return new Model($this->dba); } public function
- How To Move Classes to src
- use ''%%use%%'': <code php> // No use $config = new Friendica\Core\Config(); </code> <code php> // Namespace shortcut use Friendica\Core; $config = new Core\Config(); </code> <code php> // Class name shortcut use Friendica\Core\Config; $config = new Config(); </code> <code php> // Aliasing use Friendica\Core\Config as Cfg; $config = new Cfg(); </code> Whatever the style chosen, a repos