Skip to main content
438
results
Andrew Fletcher
Loading the node To query the node, I prefer to create a series of functions to mange the process in a class.  However, keeping this simple, this can be achieved through: $node = \Drupal\node\Entity\Node::load($nid);Otherwise if you require to load multiple nodes, where the list of node.nids is in an array. $nodes = \Drupal::entityTypeManager()->getStorage('node'); $this->list = $nodes->loadMultiple($this->nids);  Whereas, if you are looking to query the node database for...
Andrew Fletcher
If you are like me you probably have searched for clues to and found little......
Andrew Fletcher
Common commands Themes and plugins have similar command lines.  So rather...
Andrew Fletcher
Localization is the process of showing other languages in your app and is...
Andrew Fletcher
Updating Realm and RealmSwift from 5.5.x to 10.0.0 brought in the following...
Andrew Fletcher
At times while developing in October CMS, you will perform a step that kills the site.  Recently, I had transferred the site to production and I was working through our steps to cross check deployment.  This included reviewing the error logger plugin.  The error logger has four tabs Mailer, Slack, Syslog and Relic.  In the syslog tab, I was tweeting the facility, when on saving the change the site the following error greeted me: [2020-10-14 08:01:29] development.ERROR:...
Andrew Fletcher
Using October CMS to migrate your site and update the tables with the plugins...
Andrew Fletcher
[AutoFill] Cannot show Automatic Strong Passwords for app bundleID:...
Andrew Fletcher
Installing Laravel on an Apache server was going to be a no fuss process said no...
Andrew Fletcher
After creating a new view with a @Binding string as follows struct EditRival:...
Andrew Fletcher
This a resource library of the Apple developer resources that I have regularly accessed.  It will continue to grow as my path to learn app development continues. Library App Guidelines - https://developer.apple.com/library/content/qa/qa1686/_index.html Human Interface Guidelines - https://developer.apple.com/ios/human-interface-guidelines/overview/themes/ API reference - https://developer.apple.com/documentation Apple Developer Forum - https://forums.developer.apple.com/ Apple...
Andrew Fletcher
Building a contact list using SwiftUI has many challenges. One challenge is...
Andrew Fletcher
What to do when you want to filter a Realm object, using NSPredicate in...
Andrew Fletcher
I had an instance where I needed to move content from a plist to the server...
Andrew Fletcher
Registering a user via REST is an important process particularly when the...