SlideShare uma empresa Scribd logo
1 de 44
Beans, Beans - They’re
Good For Your... Editors
BADcamp 2011
October 22nd, 2011
Neil Hastings
BEANS

Neil Hastings
‣ Senior Engineering
‣ Treehouse Agency
‣ Drupal.org member for 3 years and
  34 weeks
‣ @indytechcook



                        BADcamp 2011, Neil Hastings
BEANS

What is a BEAN?




                  BADcamp 2011, Neil Hastings
BEANS

What is a BEAN?
‣ Block Entity




                  BADcamp 2011, Neil Hastings
BEANS

What is a BEAN?
‣ Block Entity
‣ BEAN Entities Aren’t Nodes
 ‣ BEAN Entities Aren’t Nodes
   ‣   BEAN Entities Aren’t Nodes
       ‣   BEAN Entities Aren’t Nodes

           ‣   BEAN Entities Aren’t Nodes




                                            BADcamp 2011, Neil Hastings
BEANS

What is a BEAN?
‣ Block Entity
‣ BEAN Entities Aren’t Nodes
 ‣ BEAN Entities Aren’t Nodes
   ‣   BEAN Entities Aren’t Nodes
       ‣   BEAN Entities Aren’t Nodes

           ‣   BEAN Entities Aren’t Nodes



‣ A Healthy Way for users to Create
  Blocks
                                            BADcamp 2011, Neil Hastings
Blocks on Energy.gov
BEANS




Block Creator
     !=
Administrator


          BADcamp 2011, Neil Hastings
BEANS

User generated Blocks
‣ Node-like blocks
 ‣ Fields
 ‣ Templates
‣ Listing blocks
 ‣ User-defined filters
 ‣ Pre-defined styles

                        BADcamp 2011, Neil Hastings
screenshot of listing
block example, with
highlights like previous
slide
screenshot of listing
block example, with
highlights like previous
slide
BEANS

Block Entities
‣ Block types
‣ Fieldable
‣ Entity API
‣ Non-admin permissions
‣ Data entry is familiar to users
‣ Build is familiar to Site Builders

                            BADcamp 2011, Neil Hastings
BEANS

Coding Concepts




                  BADcamp 2011, Neil Hastings
BEANS

Coding Concepts
‣ API First




                  BADcamp 2011, Neil Hastings
BEANS

Coding Concepts
‣ API First
‣ Every Type is a Plugin
 ‣ Even the UI types




                           BADcamp 2011, Neil Hastings
BEANS

Coding Concepts
‣ API First
‣ Every Type is a Plugin
 ‣ Even the UI types
‣ Two levels of configuration storage
 ‣ “Config” - BEAN Type/Bundle
 ‣ “Content” - BEAN/Entity
 ‣ Block Placement - BOTH!
                           BADcamp 2011, Neil Hastings
BEANS




BADcamp 2011, Neil Hastings
BEANS




SHOW ME SOME CODE ALREADY



               BADcamp 2011, Neil Hastings
BEANS

Code For All
‣ META




               BADcamp 2011, Neil Hastings
BEANS

Show me the Plugin




                BADcamp 2011, Neil Hastings
BEANS

We all love Classes
‣ Extend the base class.
  ‣ bean_plugin
  ‣ bean_custom - If bean type will be editable in
    the UI
‣ Implement Methods
  ‣ Values - Define settings to be saved against
    the Bean.
  ‣ Form - Define Form for bean add/edit
  ‣ View - Render the bean.

                                 BADcamp 2011, Neil Hastings
BEANS

Define Class
class blog_listing_bean extends bean_plugin {
.
.
}




                                       BADcamp 2011, Neil Hastings
BEANS
Define Values
public function values() {
    return array(
     'filters' => array(
         'term' => FALSE,
         'topic' => FALSE,
         'audience' => FALSE,
     ),
     'items_per_page' => array(
         'large_image' => 0,
         'small_image' => 0,
         'listing' => 0,
     ),
     'more_link' => array(
         'text' => '',
         'path' => '',
     ),
    );
}
                                  BADcamp 2011, Neil Hastings
BEANS
Define Values
public function values() {
    return array(
     'filters' => array(
         'term' => FALSE,
         'topic' => FALSE,
         'audience' => FALSE,
     ),
     'items_per_page' => array(
         'large_image' => 0,
         'small_image' => 0,
         'listing' => 0,
     ),
     'more_link' => array(
         'text' => '',
         'path' => '',
     ),
    );
}
                                  BADcamp 2011, Neil Hastings
BEANS
Define Values
public function values() {
    return array(
     'filters' => array(
         'term' => FALSE,
         'topic' => FALSE,
         'audience' => FALSE,
     ),
     'items_per_page' => array(
         'large_image' => 0,
         'small_image' => 0,
         'listing' => 0,
     ),
     'more_link' => array(
         'text' => '',
         'path' => '',
     ),
    );
}
                                  BADcamp 2011, Neil Hastings
BEANS
Define Values
public function values() {
    return array(
     'filters' => array(
         'term' => FALSE,
         'topic' => FALSE,
         'audience' => FALSE,
     ),
     'items_per_page' => array(
         'large_image' => 0,
         'small_image' => 0,
         'listing' => 0,
     ),
     'more_link' => array(
         'text' => '',
         'path' => '',
     ),
    );
}
                                  BADcamp 2011, Neil Hastings
BEANS

Form for All
public function form($bean) {
    $form['more_link']['text'] = array(
     '#type' => 'textfield',
     '#title' => t('Link text'),
     '#default_value' => $bean->more_link['text'],
    );


    $form['more_link']['path'] = array(
     '#type' => 'textfield',
     '#title' => t('Link path'),
     '#default_value' => $bean->more_link['path'],
    );
}

                                              BADcamp 2011, Neil Hastings
BEANS

Form for All
public function form($bean) {
    $form['more_link']['text'] = array(
     '#type' => 'textfield',
     '#title' => t('Link text'),
     '#default_value' => $bean->more_link['text'],
    );


    $form['more_link']['path'] = array(
     '#type' => 'textfield',
     '#title' => t('Link path'),
     '#default_value' => $bean->more_link['path'],
    );
}

                                              BADcamp 2011, Neil Hastings
BEANS

A Bean with a View
public function view($bean, $content, $view_mode =
'full', $langcode = NULL) {
}



    ‣ Return a Render Array
    ‣ Currently $view_mode is ignored in
      the block rendering



                                     BADcamp 2011, Neil Hastings
BEANS

A Bean with a View
public function view($bean, $content, $view_mode =
'full', $langcode = NULL) {
}



    ‣ Return a Render Array




                                     BADcamp 2011, Neil Hastings
BEANS
  $count = $bean->items_per_page['large_image'] + $bean->items_per_page['small_image'] + $bean-
>items_per_page['listing'];


  $query = new EnergyEntityFieldQuery();
  $query
      ->entityCondition('bundle', 'article')
      ->clearAudienceConditions()
      ->setOtherAudienceCondition()
      ->range(0, $count);


  if (!empty($bean->filters['term'])) {
      $query->setTermCondition('field_article_type', $bean->filters['term']);
  }


  if (!empty($bean->filters['topic'])) {
      $query->setTopicCondition($bean->filters['topic']);
  }


  if (!empty($bean->filters['audience'])) {
      $query->setTermCondition('field_audience_term', $bean->filters['audience']);
  }


  $result = $query->execute();

                                                                      BADcamp 2011, Neil Hastings
BEANS
if (empty($result)) {
    $content['nodes'] = array();
}
else {
    $content['nodes'] = node_load_multiple(array_keys($result['node']));
}


$content['#theme'] = 'energy_blog_list';
$content['more_link'] = array(
    'text' => $bean->more_link['text'],
    'path' => $bean->more_link['path'],
);
$content['items_per_page'] = array(
    'large_image' => $bean->items_per_page['large_image'],
    'small_image' => $bean->items_per_page['small_image'],
    'listing' => $bean->items_per_page['listing'],
);
                                                 BADcamp 2011, Neil Hastings
BEANS
if (empty($result)) {
    $content['nodes'] = array();
}
else {
    $content['nodes'] = node_load_multiple(array_keys($result['node']));
}


$content['#theme'] = 'energy_blog_list';
$content['more_link'] = array(
    'text' => $bean->more_link['text'],
    'path' => $bean->more_link['path'],
);
$content['items_per_page'] = array(
    'large_image' => $bean->items_per_page['large_image'],
    'small_image' => $bean->items_per_page['small_image'],
    'listing' => $bean->items_per_page['listing'],
);
                                                 BADcamp 2011, Neil Hastings
BEANS
if (empty($result)) {
    $content['nodes'] = array();
}
else {
    $content['nodes'] = node_load_multiple(array_keys($result['node']));
}


$content['#theme'] = 'energy_blog_list';
$content['more_link'] = array(
    'text' => $bean->more_link['text'],
    'path' => $bean->more_link['path'],
);
$content['items_per_page'] = array(
    'large_image' => $bean->items_per_page['large_image'],
    'small_image' => $bean->items_per_page['small_image'],
    'listing' => $bean->items_per_page['listing'],
);
                                                 BADcamp 2011, Neil Hastings
BEANS
if (empty($result)) {
    $content['nodes'] = array();
}
else {
    $content['nodes'] = node_load_multiple(array_keys($result['node']));
}


$content['#theme'] = 'energy_blog_list';
$content['more_link'] = array(
    'text' => $bean->more_link['text'],
    'path' => $bean->more_link['path'],
);
$content['items_per_page'] = array(
    'large_image' => $bean->items_per_page['large_image'],
    'small_image' => $bean->items_per_page['small_image'],
    'listing' => $bean->items_per_page['listing'],
);
                                                 BADcamp 2011, Neil Hastings
screenshot of listing
block example, with
highlights like previous
slide
screenshot of listing
block example, with
highlights like previous
slide
BEANS

Editorial listings
‣ Hand-selected listings of nodes
‣ Multiple Node Reference field
‣ View mode set in the Node
  Reference field settings
‣ Additional fields
  ‣ More link, Header text, etc.


                          BADcamp 2011, Neil Hastings
BEANS

More Fun!
‣ BOF in Dwinelle 183 - now
‣ http://treehouseagency.com/blog/
  neil-hastings/2011/09/21/building-
  custom-block-entities-beans
‣ http://treehouseagency.com/blog/
  neil-hastings/2011/09/06/building-
  energygov-without-views
‣ http://drupal.org/project/bean

                          BADcamp 2011, Neil Hastings

Mais conteúdo relacionado

Semelhante a BAD Beans

Riak with node.js
Riak with node.jsRiak with node.js
Riak with node.jsSean Cribbs
 
Pitfalls to Avoid for Cascade Server Newbies by Lisa Hall
Pitfalls to Avoid for Cascade Server Newbies by Lisa HallPitfalls to Avoid for Cascade Server Newbies by Lisa Hall
Pitfalls to Avoid for Cascade Server Newbies by Lisa Hallhannonhill
 
Information Science Blog Aggregation
Information Science Blog AggregationInformation Science Blog Aggregation
Information Science Blog AggregationFranny Gaede
 
Creating Operational Redundancy for Effective Web Data Mining
Creating Operational Redundancy for Effective Web Data MiningCreating Operational Redundancy for Effective Web Data Mining
Creating Operational Redundancy for Effective Web Data MiningJonathan LeBlanc
 
Your code sucks, let's fix it
Your code sucks, let's fix itYour code sucks, let's fix it
Your code sucks, let's fix itRafael Dohms
 
Your code sucks, let's fix it (CakeFest2012)
Your code sucks, let's fix it (CakeFest2012)Your code sucks, let's fix it (CakeFest2012)
Your code sucks, let's fix it (CakeFest2012)Rafael Dohms
 
MongoDB Aggregation Framework
MongoDB Aggregation FrameworkMongoDB Aggregation Framework
MongoDB Aggregation FrameworkTyler Brock
 
You code sucks, let's fix it
You code sucks, let's fix itYou code sucks, let's fix it
You code sucks, let's fix itRafael Dohms
 
Your code sucks, let's fix it - PHP Master Series 2012
Your code sucks, let's fix it - PHP Master Series 2012Your code sucks, let's fix it - PHP Master Series 2012
Your code sucks, let's fix it - PHP Master Series 2012Rafael Dohms
 

Semelhante a BAD Beans (9)

Riak with node.js
Riak with node.jsRiak with node.js
Riak with node.js
 
Pitfalls to Avoid for Cascade Server Newbies by Lisa Hall
Pitfalls to Avoid for Cascade Server Newbies by Lisa HallPitfalls to Avoid for Cascade Server Newbies by Lisa Hall
Pitfalls to Avoid for Cascade Server Newbies by Lisa Hall
 
Information Science Blog Aggregation
Information Science Blog AggregationInformation Science Blog Aggregation
Information Science Blog Aggregation
 
Creating Operational Redundancy for Effective Web Data Mining
Creating Operational Redundancy for Effective Web Data MiningCreating Operational Redundancy for Effective Web Data Mining
Creating Operational Redundancy for Effective Web Data Mining
 
Your code sucks, let's fix it
Your code sucks, let's fix itYour code sucks, let's fix it
Your code sucks, let's fix it
 
Your code sucks, let's fix it (CakeFest2012)
Your code sucks, let's fix it (CakeFest2012)Your code sucks, let's fix it (CakeFest2012)
Your code sucks, let's fix it (CakeFest2012)
 
MongoDB Aggregation Framework
MongoDB Aggregation FrameworkMongoDB Aggregation Framework
MongoDB Aggregation Framework
 
You code sucks, let's fix it
You code sucks, let's fix itYou code sucks, let's fix it
You code sucks, let's fix it
 
Your code sucks, let's fix it - PHP Master Series 2012
Your code sucks, let's fix it - PHP Master Series 2012Your code sucks, let's fix it - PHP Master Series 2012
Your code sucks, let's fix it - PHP Master Series 2012
 

Mais de Phase2

Phase2 Health and Wellness Brochure
Phase2 Health and Wellness BrochurePhase2 Health and Wellness Brochure
Phase2 Health and Wellness BrochurePhase2
 
A Modern Digital Experience Platform
A Modern Digital Experience PlatformA Modern Digital Experience Platform
A Modern Digital Experience PlatformPhase2
 
Beyond websites: A Modern Digital Experience Platform
Beyond websites: A Modern Digital Experience PlatformBeyond websites: A Modern Digital Experience Platform
Beyond websites: A Modern Digital Experience PlatformPhase2
 
The Future of Digital Storytelling - Phase2 Talk
The Future of Digital Storytelling - Phase2 TalkThe Future of Digital Storytelling - Phase2 Talk
The Future of Digital Storytelling - Phase2 TalkPhase2
 
Site building with end user in mind
Site building with end user in mindSite building with end user in mind
Site building with end user in mindPhase2
 
Fields, entities, lists, oh my!
Fields, entities, lists, oh my!Fields, entities, lists, oh my!
Fields, entities, lists, oh my!Phase2
 
Performance Profiling Tools and Tricks
Performance Profiling Tools and TricksPerformance Profiling Tools and Tricks
Performance Profiling Tools and TricksPhase2
 
NORTH CAROLINA Open Source, OpenPublic, OpenShift
NORTH CAROLINA Open Source, OpenPublic, OpenShiftNORTH CAROLINA Open Source, OpenPublic, OpenShift
NORTH CAROLINA Open Source, OpenPublic, OpenShiftPhase2
 
Drupal 8 for Enterprise: D8 in a Changing Digital Landscape
Drupal 8 for Enterprise: D8 in a Changing Digital LandscapeDrupal 8 for Enterprise: D8 in a Changing Digital Landscape
Drupal 8 for Enterprise: D8 in a Changing Digital LandscapePhase2
 
Riding the Drupal Wave: The Future for Drupal and Open Source Content Manage...
Riding the Drupal Wave:  The Future for Drupal and Open Source Content Manage...Riding the Drupal Wave:  The Future for Drupal and Open Source Content Manage...
Riding the Drupal Wave: The Future for Drupal and Open Source Content Manage...Phase2
 
Site Building with the End User in Mind
Site Building with the End User in MindSite Building with the End User in Mind
Site Building with the End User in MindPhase2
 
The Yes, No, and Maybe of "Can We Build That With Drupal?"
The Yes, No, and Maybe of "Can We Build That With Drupal?"The Yes, No, and Maybe of "Can We Build That With Drupal?"
The Yes, No, and Maybe of "Can We Build That With Drupal?"Phase2
 
User Testing For Humanitarian ID App
User Testing For Humanitarian ID AppUser Testing For Humanitarian ID App
User Testing For Humanitarian ID AppPhase2
 
Redhat.com: An Architectural Case Study
Redhat.com: An Architectural Case StudyRedhat.com: An Architectural Case Study
Redhat.com: An Architectural Case StudyPhase2
 
The New Design Workflow
The New Design WorkflowThe New Design Workflow
The New Design WorkflowPhase2
 
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)Phase2
 
Memorial Sloan Kettering: Adventures in Drupal 8
Memorial Sloan Kettering: Adventures in Drupal 8Memorial Sloan Kettering: Adventures in Drupal 8
Memorial Sloan Kettering: Adventures in Drupal 8Phase2
 
How, When, and Why to Patch a Module
How, When, and Why to Patch a Module How, When, and Why to Patch a Module
How, When, and Why to Patch a Module Phase2
 
Drupal Is Not Your Web Site
Drupal Is Not Your Web SiteDrupal Is Not Your Web Site
Drupal Is Not Your Web SitePhase2
 
Empathy For Idiots
Empathy For Idiots Empathy For Idiots
Empathy For Idiots Phase2
 

Mais de Phase2 (20)

Phase2 Health and Wellness Brochure
Phase2 Health and Wellness BrochurePhase2 Health and Wellness Brochure
Phase2 Health and Wellness Brochure
 
A Modern Digital Experience Platform
A Modern Digital Experience PlatformA Modern Digital Experience Platform
A Modern Digital Experience Platform
 
Beyond websites: A Modern Digital Experience Platform
Beyond websites: A Modern Digital Experience PlatformBeyond websites: A Modern Digital Experience Platform
Beyond websites: A Modern Digital Experience Platform
 
The Future of Digital Storytelling - Phase2 Talk
The Future of Digital Storytelling - Phase2 TalkThe Future of Digital Storytelling - Phase2 Talk
The Future of Digital Storytelling - Phase2 Talk
 
Site building with end user in mind
Site building with end user in mindSite building with end user in mind
Site building with end user in mind
 
Fields, entities, lists, oh my!
Fields, entities, lists, oh my!Fields, entities, lists, oh my!
Fields, entities, lists, oh my!
 
Performance Profiling Tools and Tricks
Performance Profiling Tools and TricksPerformance Profiling Tools and Tricks
Performance Profiling Tools and Tricks
 
NORTH CAROLINA Open Source, OpenPublic, OpenShift
NORTH CAROLINA Open Source, OpenPublic, OpenShiftNORTH CAROLINA Open Source, OpenPublic, OpenShift
NORTH CAROLINA Open Source, OpenPublic, OpenShift
 
Drupal 8 for Enterprise: D8 in a Changing Digital Landscape
Drupal 8 for Enterprise: D8 in a Changing Digital LandscapeDrupal 8 for Enterprise: D8 in a Changing Digital Landscape
Drupal 8 for Enterprise: D8 in a Changing Digital Landscape
 
Riding the Drupal Wave: The Future for Drupal and Open Source Content Manage...
Riding the Drupal Wave:  The Future for Drupal and Open Source Content Manage...Riding the Drupal Wave:  The Future for Drupal and Open Source Content Manage...
Riding the Drupal Wave: The Future for Drupal and Open Source Content Manage...
 
Site Building with the End User in Mind
Site Building with the End User in MindSite Building with the End User in Mind
Site Building with the End User in Mind
 
The Yes, No, and Maybe of "Can We Build That With Drupal?"
The Yes, No, and Maybe of "Can We Build That With Drupal?"The Yes, No, and Maybe of "Can We Build That With Drupal?"
The Yes, No, and Maybe of "Can We Build That With Drupal?"
 
User Testing For Humanitarian ID App
User Testing For Humanitarian ID AppUser Testing For Humanitarian ID App
User Testing For Humanitarian ID App
 
Redhat.com: An Architectural Case Study
Redhat.com: An Architectural Case StudyRedhat.com: An Architectural Case Study
Redhat.com: An Architectural Case Study
 
The New Design Workflow
The New Design WorkflowThe New Design Workflow
The New Design Workflow
 
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)
Drupal 8, Don’t Be Late (Enterprise Orgs, We’re Looking at You)
 
Memorial Sloan Kettering: Adventures in Drupal 8
Memorial Sloan Kettering: Adventures in Drupal 8Memorial Sloan Kettering: Adventures in Drupal 8
Memorial Sloan Kettering: Adventures in Drupal 8
 
How, When, and Why to Patch a Module
How, When, and Why to Patch a Module How, When, and Why to Patch a Module
How, When, and Why to Patch a Module
 
Drupal Is Not Your Web Site
Drupal Is Not Your Web SiteDrupal Is Not Your Web Site
Drupal Is Not Your Web Site
 
Empathy For Idiots
Empathy For Idiots Empathy For Idiots
Empathy For Idiots
 

Último

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 

Último (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 

BAD Beans

  • 1. Beans, Beans - They’re Good For Your... Editors BADcamp 2011 October 22nd, 2011 Neil Hastings
  • 2. BEANS Neil Hastings ‣ Senior Engineering ‣ Treehouse Agency ‣ Drupal.org member for 3 years and 34 weeks ‣ @indytechcook BADcamp 2011, Neil Hastings
  • 3. BEANS What is a BEAN? BADcamp 2011, Neil Hastings
  • 4. BEANS What is a BEAN? ‣ Block Entity BADcamp 2011, Neil Hastings
  • 5. BEANS What is a BEAN? ‣ Block Entity ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes BADcamp 2011, Neil Hastings
  • 6. BEANS What is a BEAN? ‣ Block Entity ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ BEAN Entities Aren’t Nodes ‣ A Healthy Way for users to Create Blocks BADcamp 2011, Neil Hastings
  • 8. BEANS Block Creator != Administrator BADcamp 2011, Neil Hastings
  • 9. BEANS User generated Blocks ‣ Node-like blocks ‣ Fields ‣ Templates ‣ Listing blocks ‣ User-defined filters ‣ Pre-defined styles BADcamp 2011, Neil Hastings
  • 10.
  • 11.
  • 12. screenshot of listing block example, with highlights like previous slide
  • 13. screenshot of listing block example, with highlights like previous slide
  • 14.
  • 15. BEANS Block Entities ‣ Block types ‣ Fieldable ‣ Entity API ‣ Non-admin permissions ‣ Data entry is familiar to users ‣ Build is familiar to Site Builders BADcamp 2011, Neil Hastings
  • 16.
  • 17.
  • 18. BEANS Coding Concepts BADcamp 2011, Neil Hastings
  • 19. BEANS Coding Concepts ‣ API First BADcamp 2011, Neil Hastings
  • 20. BEANS Coding Concepts ‣ API First ‣ Every Type is a Plugin ‣ Even the UI types BADcamp 2011, Neil Hastings
  • 21. BEANS Coding Concepts ‣ API First ‣ Every Type is a Plugin ‣ Even the UI types ‣ Two levels of configuration storage ‣ “Config” - BEAN Type/Bundle ‣ “Content” - BEAN/Entity ‣ Block Placement - BOTH! BADcamp 2011, Neil Hastings
  • 23. BEANS SHOW ME SOME CODE ALREADY BADcamp 2011, Neil Hastings
  • 24. BEANS Code For All ‣ META BADcamp 2011, Neil Hastings
  • 25. BEANS Show me the Plugin BADcamp 2011, Neil Hastings
  • 26. BEANS We all love Classes ‣ Extend the base class. ‣ bean_plugin ‣ bean_custom - If bean type will be editable in the UI ‣ Implement Methods ‣ Values - Define settings to be saved against the Bean. ‣ Form - Define Form for bean add/edit ‣ View - Render the bean. BADcamp 2011, Neil Hastings
  • 27. BEANS Define Class class blog_listing_bean extends bean_plugin { . . } BADcamp 2011, Neil Hastings
  • 28. BEANS Define Values public function values() { return array( 'filters' => array( 'term' => FALSE, 'topic' => FALSE, 'audience' => FALSE, ), 'items_per_page' => array( 'large_image' => 0, 'small_image' => 0, 'listing' => 0, ), 'more_link' => array( 'text' => '', 'path' => '', ), ); } BADcamp 2011, Neil Hastings
  • 29. BEANS Define Values public function values() { return array( 'filters' => array( 'term' => FALSE, 'topic' => FALSE, 'audience' => FALSE, ), 'items_per_page' => array( 'large_image' => 0, 'small_image' => 0, 'listing' => 0, ), 'more_link' => array( 'text' => '', 'path' => '', ), ); } BADcamp 2011, Neil Hastings
  • 30. BEANS Define Values public function values() { return array( 'filters' => array( 'term' => FALSE, 'topic' => FALSE, 'audience' => FALSE, ), 'items_per_page' => array( 'large_image' => 0, 'small_image' => 0, 'listing' => 0, ), 'more_link' => array( 'text' => '', 'path' => '', ), ); } BADcamp 2011, Neil Hastings
  • 31. BEANS Define Values public function values() { return array( 'filters' => array( 'term' => FALSE, 'topic' => FALSE, 'audience' => FALSE, ), 'items_per_page' => array( 'large_image' => 0, 'small_image' => 0, 'listing' => 0, ), 'more_link' => array( 'text' => '', 'path' => '', ), ); } BADcamp 2011, Neil Hastings
  • 32. BEANS Form for All public function form($bean) { $form['more_link']['text'] = array( '#type' => 'textfield', '#title' => t('Link text'), '#default_value' => $bean->more_link['text'], ); $form['more_link']['path'] = array( '#type' => 'textfield', '#title' => t('Link path'), '#default_value' => $bean->more_link['path'], ); } BADcamp 2011, Neil Hastings
  • 33. BEANS Form for All public function form($bean) { $form['more_link']['text'] = array( '#type' => 'textfield', '#title' => t('Link text'), '#default_value' => $bean->more_link['text'], ); $form['more_link']['path'] = array( '#type' => 'textfield', '#title' => t('Link path'), '#default_value' => $bean->more_link['path'], ); } BADcamp 2011, Neil Hastings
  • 34. BEANS A Bean with a View public function view($bean, $content, $view_mode = 'full', $langcode = NULL) { } ‣ Return a Render Array ‣ Currently $view_mode is ignored in the block rendering BADcamp 2011, Neil Hastings
  • 35. BEANS A Bean with a View public function view($bean, $content, $view_mode = 'full', $langcode = NULL) { } ‣ Return a Render Array BADcamp 2011, Neil Hastings
  • 36. BEANS $count = $bean->items_per_page['large_image'] + $bean->items_per_page['small_image'] + $bean- >items_per_page['listing']; $query = new EnergyEntityFieldQuery(); $query ->entityCondition('bundle', 'article') ->clearAudienceConditions() ->setOtherAudienceCondition() ->range(0, $count); if (!empty($bean->filters['term'])) { $query->setTermCondition('field_article_type', $bean->filters['term']); } if (!empty($bean->filters['topic'])) { $query->setTopicCondition($bean->filters['topic']); } if (!empty($bean->filters['audience'])) { $query->setTermCondition('field_audience_term', $bean->filters['audience']); } $result = $query->execute(); BADcamp 2011, Neil Hastings
  • 37. BEANS if (empty($result)) { $content['nodes'] = array(); } else { $content['nodes'] = node_load_multiple(array_keys($result['node'])); } $content['#theme'] = 'energy_blog_list'; $content['more_link'] = array( 'text' => $bean->more_link['text'], 'path' => $bean->more_link['path'], ); $content['items_per_page'] = array( 'large_image' => $bean->items_per_page['large_image'], 'small_image' => $bean->items_per_page['small_image'], 'listing' => $bean->items_per_page['listing'], ); BADcamp 2011, Neil Hastings
  • 38. BEANS if (empty($result)) { $content['nodes'] = array(); } else { $content['nodes'] = node_load_multiple(array_keys($result['node'])); } $content['#theme'] = 'energy_blog_list'; $content['more_link'] = array( 'text' => $bean->more_link['text'], 'path' => $bean->more_link['path'], ); $content['items_per_page'] = array( 'large_image' => $bean->items_per_page['large_image'], 'small_image' => $bean->items_per_page['small_image'], 'listing' => $bean->items_per_page['listing'], ); BADcamp 2011, Neil Hastings
  • 39. BEANS if (empty($result)) { $content['nodes'] = array(); } else { $content['nodes'] = node_load_multiple(array_keys($result['node'])); } $content['#theme'] = 'energy_blog_list'; $content['more_link'] = array( 'text' => $bean->more_link['text'], 'path' => $bean->more_link['path'], ); $content['items_per_page'] = array( 'large_image' => $bean->items_per_page['large_image'], 'small_image' => $bean->items_per_page['small_image'], 'listing' => $bean->items_per_page['listing'], ); BADcamp 2011, Neil Hastings
  • 40. BEANS if (empty($result)) { $content['nodes'] = array(); } else { $content['nodes'] = node_load_multiple(array_keys($result['node'])); } $content['#theme'] = 'energy_blog_list'; $content['more_link'] = array( 'text' => $bean->more_link['text'], 'path' => $bean->more_link['path'], ); $content['items_per_page'] = array( 'large_image' => $bean->items_per_page['large_image'], 'small_image' => $bean->items_per_page['small_image'], 'listing' => $bean->items_per_page['listing'], ); BADcamp 2011, Neil Hastings
  • 41. screenshot of listing block example, with highlights like previous slide
  • 42. screenshot of listing block example, with highlights like previous slide
  • 43. BEANS Editorial listings ‣ Hand-selected listings of nodes ‣ Multiple Node Reference field ‣ View mode set in the Node Reference field settings ‣ Additional fields ‣ More link, Header text, etc. BADcamp 2011, Neil Hastings
  • 44. BEANS More Fun! ‣ BOF in Dwinelle 183 - now ‣ http://treehouseagency.com/blog/ neil-hastings/2011/09/21/building- custom-block-entities-beans ‣ http://treehouseagency.com/blog/ neil-hastings/2011/09/06/building- energygov-without-views ‣ http://drupal.org/project/bean BADcamp 2011, Neil Hastings

Notas do Editor

  1. \n
  2. \n
  3. Beans are Block Entities.\nWhat does BEAN stand for.\n
  4. Beans are Block Entities.\nWhat does BEAN stand for.\n
  5. Beans are Block Entities.\nWhat does BEAN stand for.\n
  6. Before we talk about what beans really are, let’s talk about why we created beans.\n
  7. This site was going to have hundreds of blocks, which needed to be created by normal CMS users. How do we allow users to create blocks without granting them administrative access?\n
  8. After evaluating the designs, we came up with 2 main types of user generated blocks.\n
  9. Here we see 2 “Graphic” blocks. If these were nodes, we would immediately know how to build these. A title, an image field with a link, some body text. Then we style the template, or perhaps if the template isn’t too complicated, we just select the appropriate field formatters for this view mode. But these aren’t nodes, they’re blocks.\n
  10. Here is are the listing blocks.\nThat’s what let us to create Beans\nThe “BLOG” bean we will be creating later\n
  11. That’s what led us to create Beans\n
  12. Ctypes but with Blocks\nBlock types are ctools based plugins\nBlock types are entity bundles\nEntity API module adds views, actions and rules integration\n\n
  13. Bean exposes blocks as a new type of fieldable entity.  Creating new block types and adding fields is as easy as creating new node types (screenshot of block type admin).  Use the display settings for the blocks to control the display output, just like with other fieldable entities (screenshot of “display fields” tab).\n\n
  14. \n
  15. API First\n- Early versions of BEAN had no way of creating block types in the UI\nEvery plugin is a type\nBlock Placement\n- Config if context/block admin\n- Content if block reference/panels\n
  16. API First\n- Early versions of BEAN had no way of creating block types in the UI\nEvery plugin is a type\nBlock Placement\n- Config if context/block admin\n- Content if block reference/panels\n
  17. API First\n- Early versions of BEAN had no way of creating block types in the UI\nEvery plugin is a type\nBlock Placement\n- Config if context/block admin\n- Content if block reference/panels\n
  18. Let’s make a view Block for a listing of blog post. There are 3 different view modes for each node listing. The user needs to be able to select how many of each type of view mode will be used. The user will also select content filter settings.\n
  19. All modules just implement hook_bean_types_api_info\nhook_ctools_plugin_direcory is optional but recommended.\n
  20. Define a Ctools plugin\nIf you are doing a bean with only fields, you can use bean_default as the “class” with no need for “file” or “path”\n
  21. \n
  22. \n
  23. Notice the groups of settings. These help make logical breaks.\nFilters for Content\nView settings per view mode\nMore link for entire block\n
  24. Notice the groups of settings. These help make logical breaks.\nFilters for Content\nView settings per view mode\nMore link for entire block\n
  25. Notice the groups of settings. These help make logical breaks.\nFilters for Content\nView settings per view mode\nMore link for entire block\n
  26. This is just a sample. Just uses standard Form API\n$bean is fully loaded with defaults so no need to check for existence\nTalk about the $bean->more_link[‘text’].\n
  27. Common to use Entity Field Query to create dataset.\n$bean is fully loaded\n$content is the rendered content array up to now. Includes fields\nView mode is not used yet - Oh wait, as of yesterday they are!!\n\n
  28. EntityFieldQuery is awesome\nEnergyEntityFieldQuery\n- Defaults Group\n- Published\n- Easily handle topic vocab\n
  29. Using the theme function “energy_blog_list”\nnodes\nmore_link\nitems_per_page passed\n
  30. Using the theme function “energy_blog_list”\nnodes\nmore_link\nitems_per_page passed\n
  31. Using the theme function “energy_blog_list”\nnodes\nmore_link\nitems_per_page passed\n
  32. Uses view modes to render the article nodes per the 3 different settings groups\nTalk block placement\n\n
  33. Here’s a quick recipe that we used a lot on the site. It is very easy to implement and your users will love it.\n
  34. \n