]> git.proxmox.com Git - extjs.git/blob - extjs/examples/modern/oreilly/app/model/Speaker.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / modern / oreilly / app / model / Speaker.js
1 Ext.define('Oreilly.model.Speaker', {
2 extend: 'Ext.data.Model',
3
4 fields: [
5 'id',
6 'first_name',
7 'last_name',
8 'sessionIds',
9 'bio',
10 'position',
11 'photo',
12 'affiliation',
13 'url',
14 'twitter'
15 ],
16
17 getFullName: function () {
18 return this.get('first_name') + ' ' + this.get('last_name');
19 }
20 });
21
22 // "first_name": "John ",
23 // "photo": "http://assets.en.oreilly.com/1/eventprovider/1/_@user_6262.jpg",
24 // "icon": null,
25 // "position": "Founder & Executive Chairman",
26 // "name": "John Battelle",
27 // "affiliation": "Federated Media Publishing Inc.",
28 // "url": "http://www.fmpub.net/",
29 // "bio": "<p>John Battelle, 45, is an entrepreneur, journalist, professor, and author who has founded or co-founded scores of online, conference, magazine, and other media businesses.</p>\n\n\n\t<p>In addition to his work at Federated Media, one of the largest media companies on the Internet, Battelle continues to serve as the Executive Producer and Program Chair of the Web 2 Summit, as well as a partner with BoingBoing.net. Battelle also maintains Searchblog, an ongoing analysis site that covers the intersection of media, technology, and culture at <a href=\"http://www.battellemedia.com/\">www.battellemedia.com</a>.</p>\n\n\n\t<p>Previously, Battelle occupied the Bloomberg chair in Business Journalism for the Graduate School of Journalism at the University of California, Berkeley. He was Chairman and CEO of Standard Media International (SMI), publisher of The Industry Standard and TheStandard.com. Prior to that, he was a co-founding editor of Wired magazine and Wired Ventures.</p>\n\n\n\t<p>In 2005 Battelle authored The Search: How Google and Its Rivals Rewrote the Rules of Business and Transformed Our Culture (Penguin/Portfolio), an international bestseller published in more than 25 languages. He is at work on his second book, with the working title What We Hath Wrought: A History of the Internet’s Next 30 Years. He is an expert in the field of media and technology, and has appeared on many national and international news channels such as CBS, BBC, CNN, PBS, Discovery, CNBC, and dozens more.</p>\n\n\n\t<p>Battelle was a founding Board member of the Online Publishers Association and currently sits on the board of the Interactive Advertising Bureau. He sits on various startup advisory boards and served for nearly a decade on the Board of his children&#8217;s school.</p>\n\n\n\t<p>Battelle’s honors and awards include: &#8220;Global Leader for Tomorrow&#8221; and &#8220;Young Global Leader&#8221; by the World Economic Forum in Davos, Switzerland; finalist rank in the &#8220;Entrepreneur of the Year&#8221; competition by Ernst &#38; Young; &#8220;Innovator &#8211; One of Ten Best Marketers in the Business&#8221;by Advertising Age; and one of the &#8220;Most Important People on The Web&#8221; by PCWorld. Battelle holds a bachelor’s degree in Anthropology and a master&#8217;s degrees in Journalism from the University of California, Berkeley.</p>",
30 // "id": 6262,
31 // "twitter": "johnbattelle",
32 // "last_name": "Battelle"