Record ID | ia:learningdrupal6m0000butc |
Source | Internet Archive |
Download MARC XML | https://archive.org/download/learningdrupal6m0000butc/learningdrupal6m0000butc_marc.xml |
Download MARC binary | https://www.archive.org/download/learningdrupal6m0000butc/learningdrupal6m0000butc_meta.mrc |
LEADER: 09041cam 2200973Ma 4500
001 ocn318233001
003 OCoLC
005 20191209050905.0
008 090310s2008 enka o 001 0 eng d
006 m o d
007 cr zn|||||||||
040 $aCtWfDGI$beng$epn$cCOCUF$dN$T$dIDEBK$dOCLCQ$dUMI$dCEF$dCNCGM$dE7B$dOCLCQ$dB24X7$dDEBSZ$dOCLCQ$dOCLCO$dOCLCF$dYDXCP$dOCLCQ$dLOA$dOCLCQ$dAGLDB$dMOR$dCCO$dPIFAG$dLIV$dOCLCQ$dJBG$dOCLCO$dU3W$dREB$dSTF$dWRM$dVTS$dCOCUF$dNLE$dINT$dVT2$dCOO$dOCLCQ$dOCLCO$dWYU$dAU@$dOCLCQ$dM8D$dUKAHL$dHS0
019 $a288596940$a656473413$a663881307$a764554600$a778309699$a815568221$a823113631$a960204538$a961505463$a962573231$a988455112$a992049782$a1037750404$a1038584534$a1044305234$a1055385824$a1056345563$a1058062054$a1060854762$a1074432180$a1081218159$a1087447313$a1103585890
020 $a1847194443$q(pbk.)
020 $a9781847194442$q(pbk.)
020 $a9781847194459$q(electronic bk.)
020 $a1847194451$q(electronic bk.)
020 $a1281348295
020 $a9781281348296
020 $z9781847194442$q(pbk.)
024 8 $a9786611348298
035 $a(OCoLC)318233001$z(OCoLC)288596940$z(OCoLC)656473413$z(OCoLC)663881307$z(OCoLC)764554600$z(OCoLC)778309699$z(OCoLC)815568221$z(OCoLC)823113631$z(OCoLC)960204538$z(OCoLC)961505463$z(OCoLC)962573231$z(OCoLC)988455112$z(OCoLC)992049782$z(OCoLC)1037750404$z(OCoLC)1038584534$z(OCoLC)1044305234$z(OCoLC)1055385824$z(OCoLC)1056345563$z(OCoLC)1058062054$z(OCoLC)1060854762$z(OCoLC)1074432180$z(OCoLC)1081218159$z(OCoLC)1087447313$z(OCoLC)1103585890
037 $aCL0500000029$bSafari Books Online
050 4 $aTK5105.8885.D78$bB88 2008eb
072 7 $aCOM$x060160$2bisacsh
072 7 $aKNAC$2bicssc
082 04 $a006.7/6$222
100 1 $aButcher, Matt.
245 10 $aLearning Drupal 6 module development :$ba practical tutorial for creating your first Drupal 6 modules with PHP /$cMatt Butcher.
260 $aBirmingham [England] :$bPackt Pub.,$c2008.
300 $a1 online resource (v, 310 pages) :$billustrations.
336 $atext$btxt$2rdacontent
337 $acomputer$bc$2rdamedia
338 $aonline resource$bcr$2rdacarrier
490 1 $aFrom technologies to solutions.
520 $aWalk through the development of complete Drupal 6 modules with this primer for PHP programmers, written specifically for Drupal 6 to get you started coding your first module. Are you a Drupal developer looking to update to version 6? This book covers the new and updated APIs to guide your transition to Drupal 6. The new menu system, the Forms and Schema APIs, and many core revisions are covered in this book. This book is written for PHP developers who want to add custom features to Drupal. You will need to know the basics of PHP and MySQL programming, but no experience of programming Drupal is required, although you will be expected to be familiar with the basic operation of Drupal.
505 0 $aCover; Table of Contents; Preface; Chapter 1: Introduction to Drupal Modules; Drupal's Architecture; Module Architecture; Core Modules; Hooks; Themes; Crucial Drupal Concepts; Nodes; Comments Are Not Nodes; Users; Access and Security; Blocks and Page Rendering; Menus; Forms; Database and Schema APIs; Developers' Tools; Developer Module; Coder Module; A Word on Our Demonstration Site; Summary; Chapter 2: Creating Our First Module; Starting Out; A Place for the Module; Creating a .info File; A Basic .module File; Our Goal: A Block Hook; Starting the .module; The hook_block() Implementation
505 8 $aThe t() FunctionA view Operation; Installing a Module; Step 1: Copying the Module; Step 2: Enabling the Module; Step 3: Displaying the Module's Content; Using Goodreads Data; Modifying the Block Hook; Retrieving XML Content over HTTP; The watchdog() Function; Processing the HTTP Results; Formatting the Block's Contents; Finishing Touches: hook_help(); Summary; Chapter 3: The Theme System; The Theme System's Architecture; Theme Templates; Theme Engines; Theme Hooks; Creating a Custom Theme; Organization of Themes; Sub-themes (Derivative Themes); How Each Theme Functions; Creating a Theme
505 8 $aCreating the Theme DirectoryA .info File; A CSS Stylesheet; A PHPTemplate Theme; Template Structure; A Page Template for Descartes; Using PHP to Override Theme Behavior; template.php Gotchas; Creating a Screenshot; From Here to a Full Theme; Summary; Chapter 4: Theming Modules; Our Target Module: What We Want; Creating a Custom Content Type; Using the Administration Interface to Create a Content Type; Content and Nodes; The Foundations of the Module; A Simple Database Lookup; Getting the Node ID; Getting the Node's Content; Theming Inside a Module; Registering a Theme
505 8 $aCreating a Theme Hook FunctionAdding a Stylesheet; Overriding the Default Theme from a Theme; A Quick Clarification; Overriding the Default Theme's CSS; Overriding Layout with Templates; Summary; Chapter 5: Using JavaScript and AJAX/JSON in Modules; Picking up Where We Left Off; Introducing jQuery; Modifying HTML with jQuery; Checking for JavaScript Support with Drupal; Namespaces in JavaScript; Drupal's Namespace; A Drupal Function: Drupal.jsEnabled(); Delaying JavaScript Execution with jQuery; Including JavaScript from the Module's Theme; Writing a Drupal AJAX/JSON Service; The JSON Format
505 8 $aOur Module RoadmapServer Side: Defining a New Page; Creating a JSON Message; Mapping a Function to a URL; Passing PHP Settings to JavaScript; Client Side: AJAX Handlers; A JavaScript Function to Get JSON Content; Adding an Event Handler; Summary; Chapter 6: An Administration Module; The emailusers Module; The Beginning of the Module; Mail Configuration; Registering an Administration Page; A Detailed Look at the Path; Marking the Path as an Administration Page; Path Registration Parameters; Defining the Callback Function; Handling Forms with the Forms API (FAPI)
630 00 $aDrupal (Computer file)
650 0 $aOpen source software.
650 0 $aWeb site development.
650 0 $aWeb sites$xDesign.
650 7 $aCOMPUTERS$xWeb$xWeb Programming.$2bisacsh
630 07 $aDrupal (Computer file)$2fast$0(OCoLC)fst01781028
650 7 $aOpen source software.$2fast$0(OCoLC)fst01046097
650 7 $aWeb site development.$2fast$0(OCoLC)fst01173243
650 7 $aWeb sites$xDesign.$2fast$0(OCoLC)fst01173252
655 0 $aElectronic books.
655 4 $aElectronic books.
776 08 $iPrint version:$aButcher, Matt.$tLearning Drupal 6 module development.$dBirmingham, [England] : Packt Publishing, 2008$z9781847194442$w(OCoLC)230933205
830 0 $aFrom technologies to solutions.
856 40 $3Books24x7$uhttp://www.books24x7.com/marc.asp?bookid=30183
856 40 $3ebrary$uhttp://site.ebrary.com/id/10449772
856 40 $3EBSCOhost$uhttp://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=334797
856 40 $3MyiLibrary$uhttp://www.myilibrary.com?id=134829
856 40 $3ProQuest Ebook Central$uhttp://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=979965
856 40 $3Safari Books Online$uhttp://proquest.safaribooksonline.com/9781847194442
856 40 $uhttps://nls.ldls.org.uk/welcome.html?ark:/81055/vdc_100035548012.0x000001$zView item
856 40 $zVIEW FULL TEXT$uhttp://VH7QX3XE2P.search.serialssolutions.com/?V=1.0&L=VH7QX3XE2P&S=JCs&C=TC0000332235&T=marc&tab=BOOKS
856 41 $3MyiLibrary, Table of contents$uhttp://www.myilibrary.com?id=134829&ref=toc
856 4 $3Available from Skillsoft Books ITPro$idbcode=AALIM; providercode=PRVAEB$uhttps://cornell-library.skillport.com/skillportfe/main.action?assetid=30183$zConnect to online resource.
856 4 $3Books24x7$uhttp://www.books24x7.com/marc.asp?bookid=30183
856 4 $3Safari Books Online$uhttp://proquest.safaribooksonline.com/9781847194442
856 4 $3Volltext$uhttp://proquest.tech.safaribooksonline.de/9781847194442$xVerlag
856 40 $uhttp://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=334797$xWMS$yEBSCO Academic Comprehensive Collection$xProvider: EBSCO$xsubscribed$xeLoaderURL$xuc4$xucocn318233001
856 40 $uhttp://www.vlebooks.com/vleweb/product/openreader?id=none&isbn=9781847194459
856 40 $uhttp://proxy.library.carleton.ca/login?url=http://proquest.safaribooksonline.com/?uiCode=carleton&xmlId=9781847194442$zSafari (Access restricted to 5 simultaneous users)
938 $aAskews and Holts Library Services$bASKH$nAH26942746
938 $aBooks 24x7$bB247$nbks00030183
938 $aebrary$bEBRY$nebr10449772
938 $aEBSCOhost$bEBSC$n334797
938 $aProQuest MyiLibrary Digital eBook Collection$bIDEB$n134829
938 $aYBP Library Services$bYANK$n3467449
029 1 $aAU@$b000050966724
029 1 $aDEBBG$bBV043151057
029 1 $aDEBSZ$b355448106
029 1 $aDEBSZ$b421687452
029 1 $aHEBIS$b291518141
029 1 $aNZ1$b13870550
994 $aZ0$bP4A
948 $hNO HOLDINGS IN P4A - 1238 OTHER HOLDINGS