diff --git a/Controller/DemoController.php b/Controller/DemoController.php index eb4e6b2..b56940c 100644 --- a/Controller/DemoController.php +++ b/Controller/DemoController.php @@ -10,11 +10,12 @@ use eZ\Bundle\EzPublishCoreBundle\Controller; use eZ\Publish\API\Repository\Values\Content\Location; +use eZ\Publish\Core\MVC\Symfony\View\ContentView; +use eZ\Publish\Core\MVC\Symfony\View\View; use eZ\Publish\Core\Pagination\Pagerfanta\ContentSearchAdapter; use Pagerfanta\Pagerfanta; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use eZ\Publish\API\Repository\Values\Content\Query; use eZ\Publish\API\Repository\Values\Content\Query\SortClause; @@ -41,23 +42,20 @@ public function userLinksAction() /** * Renders article with extra parameters that controls page elements visibility such as image and summary. * - * @param $locationId - * @param $viewType - * @param bool $layout - * @param array $params + * @param \eZ\Publish\Core\MVC\Symfony\View\View $view + * * @return \Symfony\Component\HttpFoundation\Response */ - public function showArticleAction($locationId, $viewType, $layout = false, array $params = array()) + public function showArticleAction(View $view) { - return $this->get('ez_content')->viewLocation( - $locationId, - $viewType, - $layout, - array( + $view->addParameters( + [ 'showSummary' => $this->container->getParameter('ezdemo.article.full_view.show_summary'), 'showImage' => $this->container->getParameter('ezdemo.article.full_view.show_image'), - ) + $params + ] ); + + return $view; } /** @@ -66,39 +64,24 @@ public function showArticleAction($locationId, $viewType, $layout = false, array * the view. Since it is not calling the ViewControler we don't need to match a specific * method signature. * - * @param \eZ\Publish\API\Repository\Values\Content\Location $location containing blog posts + * @param \eZ\Publish\Core\MVC\Symfony\View\ContentView $view + * @param \Symfony\Component\HttpFoundation\Request $request + * * @return \Symfony\Component\HttpFoundation\Response */ - public function listBlogPostsAction(Location $location, Request $request) + public function listBlogPostsAction(ContentView $view, Request $request) { - $response = new Response(); - - // Setting default cache configuration (you can override it in you siteaccess config) - $response->setSharedMaxAge($this->getConfigResolver()->getParameter('content.default_ttl')); - - // Make the response location cache aware for the reverse proxy - $response->headers->set('X-Location-Id', $location->id); - $response->setVary('X-User-Hash'); - $viewParameters = $request->attributes->get('viewParameters'); - // Getting location and content from ezpublish dedicated services - $repository = $this->getRepository(); - if ($location->invisible) { - throw new NotFoundHttpException("Location #$location->id cannot be displayed as it is flagged as invisible."); - } - - $content = $repository - ->getContentService() - ->loadContentByContentInfo($location->getContentInfo()); - - // Getting language for the current siteaccess + // This could be changed to use dynamic parameters injection $languages = $this->getConfigResolver()->getParameter('languages'); // Using the criteria helper (a demobundle custom service) to generate our query's criteria. // This is a good practice in order to have less code in your controller. $criteria = $this->get('ezdemo.criteria_helper')->generateListBlogPostCriterion( - $location, $viewParameters, $languages + $view->getLocation(), + $viewParameters, + $languages ); // Generating query @@ -115,15 +98,12 @@ public function listBlogPostsAction(Location $location, Request $request) $pager->setMaxPerPage($this->container->getParameter('ezdemo.blog.blog_post_list.limit')); $pager->setCurrentPage($request->get('page', 1)); - return $this->render( - 'eZDemoBundle:full:blog.html.twig', - array( - 'location' => $location, - 'content' => $content, - 'pagerBlog' => $pager, - ), - $response - ); + $view->addParameters(['pagerBlog' => $pager]); + + // The template identifier can be set from the controller action + $view->setTemplateIdentifier('eZDemoBundle:full:blog.html.twig'); + + return $view; } /** @@ -133,29 +113,16 @@ public function listBlogPostsAction(Location $location, Request $request) * Viewcontroller's viewLocation method. To be able to do that, we need to implement it's * full signature. * - * @param \eZ\Publish\API\Repository\Values\Content\Location $location of the blog post - * @param $viewType - * @param bool $layout - * @param array $params - * @return \Symfony\Component\HttpFoundation\Response + * @param ContentView $view + * + * @return View */ - public function showBlogPostAction(Location $location, $viewType, $layout = false, array $params = array()) + public function showBlogPostAction(ContentView $view) { - // We need the author, whatever the view type is. - $repository = $this->getRepository(); - $author = $repository->getUserService()->loadUser($location->getContentInfo()->ownerId); - - // TODO once the keyword service is available, load the number of keyword for each keyword - - // Delegate view rendering to the original ViewController - // (makes it possible to continue using defined template rules) - // We just add "author" to the list of variables exposed to the final template - return $this->get('ez_content')->viewLocation( - $location->id, - $viewType, - $layout, - array('author' => $author) + $params - ); + $author = $this->getRepository()->getUserService()->loadUser($view->getContent()->contentInfo->ownerId); + $view->addParameters(['author' => $author]); + + return $view; } /** diff --git a/Controller/FeedbackFormController.php b/Controller/FeedbackFormController.php index 7115d4b..4c75b32 100644 --- a/Controller/FeedbackFormController.php +++ b/Controller/FeedbackFormController.php @@ -9,7 +9,7 @@ namespace EzSystems\DemoBundle\Controller; use eZ\Bundle\EzPublishCoreBundle\Controller; -use eZ\Publish\API\Repository\Values\Content\Location; +use eZ\Publish\Core\MVC\Symfony\View\ContentView; use EzSystems\DemoBundle\Entity\Feedback; use EzSystems\DemoBundle\Helper\EmailHelper; use Symfony\Component\HttpFoundation\Request; @@ -17,17 +17,16 @@ class FeedbackFormController extends Controller { /** - * Displays and manages the feedback form. + * Displays the feedback form, and processes posted data. + * The signature of this method follows the one from the default view controller, and adds the Request, since + * we use to handle form data. * - * The signature of this method follows the one from the default view controller. - * @param \eZ\Publish\API\Repository\Values\Content\Location $location - * @param $viewType - * @param bool $layout - * @param array $params + * @param \Symfony\Component\HttpFoundation\Request $request + * @param \eZ\Publish\Core\MVC\Symfony\View\ContentView $view * - * @return mixed + * @return View */ - public function showFeedbackFormAction(Request $request, Location $location, $viewType, $layout = false, array $params = array()) + public function showFeedbackFormAction(Request $request, ContentView $view) { // Creating a form using Symfony's form component $feedback = new Feedback(); @@ -51,15 +50,12 @@ public function showFeedbackFormAction(Request $request, Location $location, $vi $this->get('translator')->trans('Thank you for your message, we will get back to you as soon as possible.') ); - return $this->redirect($this->generateUrl($location)); + return $this->redirect($this->generateUrl($view->getLocation())); } } - return $this->get('ez_content')->viewLocation( - $location->id, - $viewType, - $layout, - array('form' => $form->createView()) + $params - ); + $view->addParameters(['form' => $form->createView()]); + + return $view; } } diff --git a/Controller/FolderController.php b/Controller/FolderController.php index c118c31..be98681 100644 --- a/Controller/FolderController.php +++ b/Controller/FolderController.php @@ -11,11 +11,10 @@ use eZ\Publish\API\Repository\Values\Content\LocationQuery; use eZ\Publish\API\Repository\Values\Content\Query; use eZ\Publish\API\Repository\Values\Content\Query\SortClause; -use eZ\Publish\API\Repository\Values\Content\Location; +use eZ\Publish\Core\MVC\Symfony\View\ContentView; use eZ\Publish\Core\Pagination\Pagerfanta\ContentSearchAdapter; use eZ\Bundle\EzPublishCoreBundle\Controller; use Pagerfanta\Pagerfanta; -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpFoundation\Request; class FolderController extends Controller @@ -23,22 +22,16 @@ class FolderController extends Controller /** * Displays the sub folder if it exists. * - * @param \eZ\Publish\API\Repository\Values\Content\Location $location of a folder - * @throws NotFoundHttpException $location is flagged as invisible - * @return \Symfony\Component\HttpFoundation\Response + * @param \eZ\Publish\Core\MVC\Symfony\View\ContentView $view + * + * @return \Symfony\Component\HttpFoundation\Response $location is flagged as invisible */ - public function showFolderListAsideViewAction(Location $location) + public function showFolderListAsideViewAction(ContentView $view) { - if ($location->invisible) { - throw new NotFoundHttpException("Location #$location->id cannot be displayed as it is flagged as invisible."); - } - - $languages = $this->getConfigResolver()->getParameter('languages'); - - $includedContentTypeIdentifiers = $this->container->getParameter('ezdemo.folder.folder_tree.included_content_types'); - $subContentCriteria = $this->get('ezdemo.criteria_helper')->generateSubContentCriterion( - $location, $includedContentTypeIdentifiers, $languages + $view->getLocation(), + $this->container->getParameter('ezdemo.folder.folder_tree.included_content_types'), + $this->getConfigResolver()->getParameter('languages') ); $subContentQuery = new LocationQuery(); @@ -56,37 +49,29 @@ public function showFolderListAsideViewAction(Location $location) $treeChildItems[] = $hit->valueObject; } - return $this->get('ez_content')->viewLocation( - $location->id, - 'aside_sub', - true, - ['treeChildItems' => $treeChildItems] - ); + $view->addParameters(['treeChildItems' => $treeChildItems]); + + return $view; } /** * Displays the list of article. * - * @param \eZ\Publish\API\Repository\Values\Content\Location $location of a folder * @param \Symfony\Component\HttpFoundation\Request $request request object - * @throws NotFoundHttpException $location is flagged as invisible - * @return \Symfony\Component\HttpFoundation\Response + * @param \eZ\Publish\Core\MVC\Symfony\View\ContentView $view + * + * @return \Symfony\Component\HttpFoundation\Response $location is flagged as invisible */ - public function showFolderListAction(Request $request, Location $location) + public function showFolderListAction(Request $request, ContentView $view) { - if ($location->invisible) { - throw new NotFoundHttpException("Location #$location->id cannot be displayed as it is flagged as invisible."); - } - - // Getting language for the current siteaccess $languages = $this->getConfigResolver()->getParameter('languages'); - $excludedContentTypes = $this->container->getParameter('ezdemo.folder.folder_view.excluded_content_types'); - // Using the criteria helper (a demobundle custom service) to generate our query's criteria. // This is a good practice in order to have less code in your controller. $criteria = $this->get('ezdemo.criteria_helper')->generateListFolderCriterion( - $location, $excludedContentTypes, $languages + $view->getLocation(), + $this->container->getParameter('ezdemo.folder.folder_view.excluded_content_types'), + $languages ); // Generating query @@ -108,7 +93,7 @@ public function showFolderListAction(Request $request, Location $location) // Get sub folder structure $subContentCriteria = $this->get('ezdemo.criteria_helper')->generateSubContentCriterion( - $location, $includedContentTypeIdentifiers, $languages + $view->getLocation(), $includedContentTypeIdentifiers, $languages ); $subContentQuery = new LocationQuery(); @@ -125,11 +110,8 @@ public function showFolderListAction(Request $request, Location $location) $treeItems[] = $hit->valueObject; } - return $this->get('ez_content')->viewLocation( - $location->id, - 'full', - true, - ['pagerFolder' => $pager, 'treeItems' => $treeItems] - ); + $view->addParameters(['pagerFolder' => $pager, 'treeItems' => $treeItems]); + + return $view; } } diff --git a/PremiumContent/PremiumLocationViewProvider.php b/PremiumContent/PremiumLocationViewProvider.php index b1aa177..e9bd09f 100644 --- a/PremiumContent/PremiumLocationViewProvider.php +++ b/PremiumContent/PremiumLocationViewProvider.php @@ -9,13 +9,15 @@ use eZ\Publish\API\Repository\Repository; use eZ\Publish\API\Repository\Values\Content\Location; +use eZ\Publish\Core\MVC\Symfony\View\ContentValueView; use eZ\Publish\Core\MVC\Symfony\View\ContentView; -use eZ\Publish\Core\MVC\Symfony\View\Provider\Location as LocationViewProvider; +use eZ\Publish\Core\MVC\Symfony\View\View; +use eZ\Publish\Core\MVC\Symfony\View\ViewProvider; /** * Returns the premium_content view if it applies to a location and if the user isn't a Premium subscriber. */ -class PremiumLocationViewProvider implements LocationViewProvider +class PremiumLocationViewProvider implements ViewProvider { /** * ID of the section used to mark content as Premium. @@ -38,13 +40,19 @@ public function __construct(Repository $repository, PremiumSubscriptionChecker $ $this->subscriptionChecker = $subscriptionChecker; } - public function getView(Location $location, $viewType) + public function getView(View $view) { + $viewType = $view->getViewType(); + if ($viewType !== 'full') { return null; } - if ($location->getContentInfo()->sectionId !== $this->premiumSectionId) { + if (!$view instanceof ContentValueView) { + return null; + } + + if ($view->getContent()->contentInfo->sectionId !== $this->premiumSectionId) { return null; } diff --git a/Resources/installer/sql/demo_clean_data.sql b/Resources/installer/sql/demo_clean_data.sql index a71ab2b..294a2d4 100644 --- a/Resources/installer/sql/demo_clean_data.sql +++ b/Resources/installer/sql/demo_clean_data.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.6.22, for osx10.8 (x86_64) +-- MySQL dump 10.13 Distrib 5.6.23, for osx10.10 (x86_64) -- -- Host: localhost Database: ez4 -- ------------------------------------------------------ --- Server version 5.6.22 +-- Server version 5.6.23 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -310,12 +310,12 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',3,0,0,0,0,255,0,0,0,'','','' INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',8,'first_name',0,1,1,1,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:16:\"First name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',9,'last_name',0,1,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:15:\"Last name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',4,0,0,0,0,0,0,0,0,'','','','','','ezuser',12,'user_account',0,1,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:37:\"Type here Account linked to the user.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:12:\"User account\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,100,0,0,0,'','','','','','ezstring',149,'subject',0,1,1,1,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:19:\"Type in your topic.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,0,0,0,0,'','','','','','ezstring',150,'author',0,1,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:24:\"Displayed under subject.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:6:\"Author\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,20,0,0,0,'','','','','','eztext',151,'message',0,1,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,100,0,0,0,'','','','','','ezstring',155,'short_name',0,0,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:33:\"Descriptive title, non displayed.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"Short name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',1,0,0,0,0,0,0,1,0,'','','','','','ezboolean',158,'show_children',0,0,0,5,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:34:\"If checked folder items displayed.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Display sub items\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',14,0,0,0,0,0,0,0,0,'','','','','','ezstring',159,'name',0,0,1,1,NULL,NULL,'a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',14,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','IndexPage','','override;user;admin;demo','ezinisetting',160,'indexpage',0,0,0,2,NULL,NULL,'a:2:{s:6:\"eng-GB\";s:10:\"Index Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -340,25 +340,25 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,10,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,1,0,0,0,'','','','','','ezimage',180,'image',0,0,0,5,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:14:\"Image of User.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,255,0,0,0,'New article','','','','','ezstring',181,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:42:\"Will be shown at the top of article pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,255,0,0,0,'','','','','','ezstring',182,'short_title',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:47:\"It is used in the listing page and in the Menu.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',183,'intro',0,1,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:79:\"Displayed on the listing page as a summary, but not displayed in the main page.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',184,'body',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:23:\"Content of the article.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',185,'subscriber_teaser',0,0,0,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:36:\"Teaser displayed for non subscriber.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Subscriber teaser\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',183,'intro',0,1,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:79:\"Displayed on the listing page as a summary, but not displayed in the main page.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',184,'body',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:23:\"Content of the article.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',185,'subscriber_teaser',0,0,0,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:36:\"Teaser displayed for non subscriber.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Subscriber teaser\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezimage',186,'image',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',187,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Text you want to display beneath the image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',187,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Text you want to display beneath the image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezgmaplocation',188,'location',0,0,1,8,'a:0:{}','a:2:{s:6:\"eng-GB\";s:88:\"Geolocation associated to the article, for instance, the place where the story happened.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezauthor',189,'author',0,0,0,9,'a:0:{}','a:1:{s:6:\"eng-GB\";s:40:\"Text is displayed under Article\'s title.\";}','a:2:{s:6:\"eng-GB\";s:6:\"Author\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',190,'publish_date',0,0,1,10,'a:0:{}','a:1:{s:6:\"eng-GB\";s:54:\"Schedule here the date when this article is published.\";}','a:2:{s:6:\"eng-GB\";s:12:\"Publish date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',191,'star_rating',0,0,0,11,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',192,'tags',0,0,1,12,'a:0:{}','a:2:{s:6:\"eng-GB\";s:62:\"For further searching tasks. Type keywords separated by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,0,0,0,0,'','','','','','ezstring',193,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Name or title of the blog.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',194,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of blog.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',194,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of blog.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',195,'tags',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezstring',196,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:30:\"Shown at the top of blog post.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,25,0,0,0,'','','','','','ezxmltext',197,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Content of the blog post.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,25,0,0,0,'','','','','','ezrichtext',197,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Content of the blog post.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',198,'publication_date',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:56:\"Schedule here the date when this blog post is published.\";}','a:2:{s:6:\"eng-GB\";s:16:\"Publication date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',199,'tags',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',200,'title',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Title of form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',201,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:31:\"Description of how to use form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',201,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:31:\"Description of how to use form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezobjectrelation',202,'feedback_page',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:33:\"URL you want give feedback about.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Feedback Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',203,'first_name',1,1,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:16:\"First name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',204,'last_name',1,1,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:15:\"Last name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -367,19 +367,19 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','eztext',207,'comment',1,1,1,8,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Set up feedback option here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Comment\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',208,'action_button_label',0,0,1,9,'a:0:{}','a:2:{s:6:\"eng-GB\";s:34:\"Type text for Action button label.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:19:\"Action Button Label\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,0,0,0,0,'','','','','','ezstring',209,'title',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:18:\"Title of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',210,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:24:\"Description of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',210,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:24:\"Description of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezstring',211,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:16:\"Name of product.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezstring',212,'product_number',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Model name or number.\";}','a:2:{s:6:\"eng-GB\";s:14:\"Product number\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',213,'short_description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Brief summary of product.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',214,'description',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Full description of product.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',213,'short_description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Brief summary of product.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',214,'description',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Full description of product.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,1,0,0,0,1,0,0,0,'','','','','','ezprice',215,'price',0,0,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Price of the product.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Price\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezimage',216,'image',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',217,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:24:\"Displayed beneath image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',217,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:24:\"Displayed beneath image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezmultioption',218,'additional_options',0,0,1,8,'a:0:{}','a:1:{s:6:\"eng-GB\";s:97:\"You can create a drop-down list of additional options that the customer can buy with the product.\";}','a:2:{s:6:\"eng-GB\";s:18:\"Additional options\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',219,'star_rating',0,0,1,9,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',220,'tags',0,0,1,10,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',221,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:22:\"Title of landing page.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',222,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:70:\"Main content of the landing page, on the left column on large screens.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',222,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:70:\"Main content of the landing page, on the left column on large screens.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',223,'first_name',1,1,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Sender\'s name.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',224,'last_name',1,1,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Sender\'s last name.\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',225,'subject',1,1,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Title of feedback.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -391,34 +391,34 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',23,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezpage',231,'page',0,0,0,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:6:\"Layout\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezpage',231,'page',0,0,0,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:6:\"Layout\";s:16:\"always-available\";s:6:\"eng-GB\";}',1); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezstring',232,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of Wiki.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',233,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',233,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',234,'star_rating',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',235,'tags',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Keywords for searching Wiki.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezboolean',236,'show_children',0,0,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:35:\"If checked Wiki subitems displayed.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Display sub items\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezstring',237,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of poll.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',238,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',238,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezoption',239,'question',1,1,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Text of the question.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Question\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'New file','','','','','ezstring',240,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Name of file.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',241,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:20:\"Description of file.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',241,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:20:\"Description of file.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',242,'file',0,1,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',243,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',244,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,150,0,0,0,'','','','','','ezstring',245,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Name of file.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',246,'caption',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Description of file that shows up on image.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',246,'caption',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Description of file that shows up on image.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,2,0,0,0,'','','','','','ezimage',247,'image',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',248,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',249,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,255,0,0,0,'','','','','','ezstring',250,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of link.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',251,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of link.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',251,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of link.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,0,0,0,0,'','','','','','ezurl',252,'location',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:34:\"URL and description text on hover.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,0,0,1,0,'','','','','','ezboolean',253,'open_in_new_window',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Opens in new tab.\";}','a:2:{s:6:\"eng-GB\";s:18:\"Open in new window\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezstring',254,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Title of gallery.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',255,'short_description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Brief description of gallery.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',256,'description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Content of gallery.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',255,'short_description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Brief description of gallery.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',256,'description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Content of gallery.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezobjectrelation',257,'image',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',258,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:32:\"Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,0,0,0,0,'','','','','','ezstring',259,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:15:\"Title of forum.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',260,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Description of forum.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',260,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Description of forum.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezstring',261,'subject',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Descriptive title.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,10,0,0,0,'','','','','','eztext',262,'message',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezboolean',263,'sticky',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:63:\"Allow users to add a sticky when creating or editing a message.\";}','a:2:{s:6:\"eng-GB\";s:6:\"Sticky\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -427,7 +427,7 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',32,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',32,0,0,0,0,10,0,0,0,'','','','','','eztext',266,'message',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,55,0,0,0,'','','','','','ezstring',267,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:38:\"Full descriptive title, not displayed.\";}','a:2:{s:6:\"eng-GB\";s:10:\"Full title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,19,0,0,0,'','','','','','ezstring',268,'short_title',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:41:\"Used in the listing page and in the menu.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',269,'text',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Summary of event.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Text\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',269,'text',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Summary of event.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Text\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',270,'category',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Keywords for searching event.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Category\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',33,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',271,'from_time',0,1,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Starting time.\";}','a:2:{s:6:\"eng-GB\";s:9:\"From Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',33,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',272,'to_time',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:12:\"Ending time.\";}','a:2:{s:6:\"eng-GB\";s:7:\"To Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -440,20 +440,20 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,10,0,0,0,'','','','','','eztext',279,'image_map',0,0,0,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:38:\"Image implements as a navigation menu.\";}','a:2:{s:6:\"eng-GB\";s:9:\"Image map\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',280,'tags',0,0,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,0,0,0,0,'','','','','','ezstring',281,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Descriptive title.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',282,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',282,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezstring',283,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Name of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',284,'caption',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:20:\"Description of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',284,'caption',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:20:\"Description of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',285,'file',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',286,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezstring',287,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Name of place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',288,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',288,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezimage',289,'image',0,0,0,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezgmaplocation',290,'location',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:76:\"Geolocation associated to the Place, for instance, where the story happened.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',291,'keyword',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Keyword\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',292,'rating',0,0,1,6,'a:0:{}','a:2:{s:6:\"eng-GB\";s:26:\"Allow users to rate place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:6:\"Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezstring',293,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Name of place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezstring',294,'short_name',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:18:\"Short description.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"Short name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',295,'description',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',295,'description',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',296,'site_map_url',0,0,0,8,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:12:\"Site map URL\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',297,'tag_cloud_url',0,0,0,9,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Tag Cloud URL\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',298,'login_label',0,0,0,10,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Login (label)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -615,31 +615,31 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,9,14,0,0,'User','ezstring',29, INSERT INTO `ezcontentobject_attribute` VALUES (30,12,14,0,0,'','ezuser',30,'eng-GB',3,0,'',3); INSERT INTO `ezcontentobject_attribute` VALUES (30,12,14,0,0,'{\"login\":\"admin\",\"password_hash\":\"c78e3b0f3d9244ed8c6d1c29464bdff9\",\"email\":\"noreply@ez.no\",\"password_hash_type\":2}','ezuser',30,'eng-GB',3,0,'',4); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,41,0,0,'Media','ezstring',98,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,41,0,1045487555,'\n
','ezxmltext',99,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,41,0,1045487555,'\n
\n','ezrichtext',99,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,6,42,0,0,'Anonymous Users','ezstring',100,'eng-GB',3,0,'anonymous users',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,7,42,0,0,'User group for the anonymous user','ezstring',101,'eng-GB',3,0,'user group for the anonymous user',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,41,0,0,'','ezstring',103,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,41,0,1045487555,'','ezxmltext',105,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,41,0,1045487555,'\n
\n','ezrichtext',105,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,41,0,0,'','ezboolean',109,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,45,0,0,'Setup','ezstring',123,'eng-GB',3,0,'setup',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,45,0,0,'','ezstring',124,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,45,0,1045487555,'\n
','ezxmltext',125,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,45,0,1045487555,'\n
','ezxmltext',126,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,45,0,1045487555,'\n
\n','ezrichtext',125,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,45,0,1045487555,'\n
\n','ezrichtext',126,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,45,0,0,'','ezboolean',128,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,49,0,0,'Images','ezstring',142,'eng-GB',3,0,'images',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,49,0,0,'','ezstring',143,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,49,0,1045487555,'\n
','ezxmltext',144,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,49,0,1045487555,'\n
','ezxmltext',145,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,49,0,1045487555,'\n
\n','ezrichtext',144,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,49,0,1045487555,'\n
\n','ezrichtext',145,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,49,0,1,'','ezboolean',146,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,50,0,0,'Files','ezstring',147,'eng-GB',3,0,'files',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,50,0,0,'','ezstring',148,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,50,0,1045487555,'\n
','ezxmltext',149,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,50,0,1045487555,'\n
','ezxmltext',150,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,50,0,1045487555,'\n
\n','ezrichtext',149,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,50,0,1045487555,'\n
\n','ezrichtext',150,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,50,0,1,'','ezboolean',151,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,51,0,0,'Multimedia','ezstring',152,'eng-GB',3,0,'multimedia',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,51,0,0,'','ezstring',153,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,51,0,1045487555,'\n
','ezxmltext',154,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,51,0,1045487555,'\n
','ezxmltext',155,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,51,0,1045487555,'\n
\n','ezrichtext',154,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,51,0,1045487555,'\n
\n','ezrichtext',155,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,51,0,1,'','ezboolean',156,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,159,52,0,0,'Common INI settings','ezstring',157,'eng-GB',2,0,'common ini settings',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,160,52,0,0,'/content/view/full/2/','ezinisetting',158,'eng-GB',2,0,'',1); @@ -668,18 +668,18 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,180,14,0,0,'\n\n','ezimage',180,'eng-GB',3,0,'',4); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,56,0,NULL,'Design','ezstring',181,'eng-GB',3,0,'design',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,56,0,NULL,'','ezstring',182,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,56,0,1045487555,'\n
','ezxmltext',183,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,56,0,1045487555,'\n
','ezxmltext',184,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,56,0,1045487555,'\n
\n','ezrichtext',183,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,56,0,1045487555,'\n
\n','ezrichtext',184,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,56,0,1,'','ezboolean',185,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,230,57,0,NULL,'Home','ezstring',186,'eng-GB',3,0,'home',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,231,57,0,NULL,'\n\n 2ZonesLayout1\n \n left\n \n \n right\n \n\n','ezpage',187,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,58,0,NULL,'Footer','ezstring',188,'eng-GB',2,0,'footer',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,58,0,NULL,'footer','ezstring',189,'eng-GB',2,0,'footer',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,58,0,1045487555,'
eZ is a global company with offices around the world including Skien (Norway), New York (USA), Oslo (Norway), Cologne (Germany), Paris (France), Lyon (France), Beijing (China), Tokyo (Japan), Singapore, London (UK)Contact us for more information!
','ezxmltext',190,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,58,0,1045487555,'
  • eZ Official site: http://ez.no
  • eZ Community site: http://share.ez.no
  • Documentation: http://doc.ez.no
  • Follow us on Twitter, Facebook and LinkedIn
Copyright © 2014 eZ Systems AS (except where otherwise noted). All rights reserved.
','ezxmltext',191,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,58,0,1045487555,'\n
\n','ezxmltext',192,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,58,0,1045487555,'\n
eZ is a global company with offices around the world including Skien (Norway), New York (USA), Oslo (Norway), Cologne (Germany), Paris (France), Lyon (France), Beijing (China), Tokyo (Japan), Singapore, London (UK)Contact us for more information!
\n','ezrichtext',190,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,58,0,1045487555,'\n
eZ Official site: http://ez.noeZ Community site: http://share.ez.noDocumentation: http://doc.ez.noFollow us on Twitter, Facebook and LinkedInCopyright © 2014 eZ Systems AS (except where otherwise noted). All rights reserved.
\n','ezrichtext',191,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,58,0,1045487555,'\n
\n','ezrichtext',192,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,58,0,NULL,'\n\n','ezimage',193,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,58,0,1045487555,'
','ezxmltext',194,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,58,0,1045487555,'\n
\n','ezrichtext',194,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,58,0,0,'','ezgmaplocation',195,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,58,0,NULL,'\n\n','ezauthor',196,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,58,0,1341417600,'','ezdatetime',197,'eng-GB',2,1341417600,'',1); @@ -3386,4 +3386,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2015-08-26 11:39:01 +-- Dump completed on 2015-10-15 15:36:46 diff --git a/Resources/installer/sql/demo_data.sql b/Resources/installer/sql/demo_data.sql index 15b8eec..bb8b88a 100644 --- a/Resources/installer/sql/demo_data.sql +++ b/Resources/installer/sql/demo_data.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.6.22, for osx10.8 (x86_64) +-- MySQL dump 10.13 Distrib 5.6.23, for osx10.10 (x86_64) -- -- Host: localhost Database: ez4 -- ------------------------------------------------------ --- Server version 5.6.22 +-- Server version 5.6.23 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -385,14 +385,14 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',3,0,0,0,0,255,0,0,0,'','','' INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',8,'first_name',0,1,1,1,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:16:\"First name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',9,'last_name',0,1,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:15:\"Last name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',4,0,0,0,0,0,0,0,0,'','','','','','ezuser',12,'user_account',0,1,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:37:\"Type here Account linked to the user.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:12:\"User account\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',1); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',119,'short_description',0,0,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:41:\"Displayed as a separate paragraph at top.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',1); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,100,0,0,0,'','','','','','ezstring',149,'subject',0,1,1,1,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:19:\"Type in your topic.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,0,0,0,0,'','','','','','ezstring',150,'author',0,1,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:24:\"Displayed under subject.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:6:\"Author\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',13,0,0,0,0,20,0,0,0,'','','','','','eztext',151,'message',0,1,1,3,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,100,0,0,0,'','','','','','ezstring',155,'short_name',0,0,1,2,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:33:\"Descriptive title, non displayed.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"Short name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',1); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',156,'description',0,0,1,4,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',1); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',1,0,0,0,0,0,0,1,0,'','','','','','ezboolean',158,'show_children',0,0,0,5,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:34:\"If checked folder items displayed.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Display sub items\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',14,0,0,0,0,0,0,0,0,'','','','','','ezstring',159,'name',0,0,1,1,NULL,NULL,'a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',14,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','IndexPage','','override;user;admin;demo','ezinisetting',160,'indexpage',0,0,0,2,NULL,NULL,'a:2:{s:6:\"eng-GB\";s:10:\"Index Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -417,25 +417,25 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,10,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',4,0,0,0,0,1,0,0,0,'','','','','','ezimage',180,'image',0,0,0,5,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:14:\"Image of User.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,255,0,0,0,'New article','','','','','ezstring',181,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:42:\"Will be shown at the top of article pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,255,0,0,0,'','','','','','ezstring',182,'short_title',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:47:\"It is used in the listing page and in the Menu.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',183,'intro',0,1,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:79:\"Displayed on the listing page as a summary, but not displayed in the main page.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',184,'body',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:23:\"Content of the article.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',185,'subscriber_teaser',0,0,0,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:36:\"Teaser displayed for non subscriber.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Subscriber teaser\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',183,'intro',0,1,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:79:\"Displayed on the listing page as a summary, but not displayed in the main page.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',184,'body',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:23:\"Content of the article.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',185,'subscriber_teaser',0,0,0,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:36:\"Teaser displayed for non subscriber.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:17:\"Subscriber teaser\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezimage',186,'image',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',187,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Text you want to display beneath the image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',187,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Text you want to display beneath the image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezgmaplocation',188,'location',0,0,1,8,'a:0:{}','a:2:{s:6:\"eng-GB\";s:88:\"Geolocation associated to the article, for instance, the place where the story happened.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezauthor',189,'author',0,0,0,9,'a:0:{}','a:1:{s:6:\"eng-GB\";s:40:\"Text is displayed under Article\'s title.\";}','a:2:{s:6:\"eng-GB\";s:6:\"Author\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',190,'publish_date',0,0,1,10,'a:0:{}','a:1:{s:6:\"eng-GB\";s:54:\"Schedule here the date when this article is published.\";}','a:2:{s:6:\"eng-GB\";s:12:\"Publish date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',191,'star_rating',0,0,0,11,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'meta',16,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',192,'tags',0,0,1,12,'a:0:{}','a:2:{s:6:\"eng-GB\";s:62:\"For further searching tasks. Type keywords separated by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,0,0,0,0,'Name or title of the blog.','','','','','ezstring',193,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Name or title of the blog.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',194,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of blog.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',194,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of blog.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',17,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',195,'tags',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezstring',196,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:30:\"Shown at the top of blog post.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,25,0,0,0,'','','','','','ezxmltext',197,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Content of the blog post.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,25,0,0,0,'','','','','','ezrichtext',197,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Content of the blog post.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',198,'publication_date',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:56:\"Schedule here the date when this blog post is published.\";}','a:2:{s:6:\"eng-GB\";s:16:\"Publication date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',199,'tags',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',200,'title',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Title of form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',201,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:31:\"Description of how to use form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',201,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:31:\"Description of how to use form.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezobjectrelation',202,'feedback_page',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:33:\"URL you want give feedback about.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Feedback Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',203,'first_name',1,1,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:16:\"First name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',204,'last_name',1,1,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:15:\"Last name here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -444,19 +444,19 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,10,0,0,0,'','','','','','eztext',207,'comment',1,1,1,8,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Set up feedback option here.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Comment\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',208,'action_button_label',0,0,1,9,'a:0:{}','a:2:{s:6:\"eng-GB\";s:34:\"Type text for Action button label.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:19:\"Action Button Label\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,0,0,0,0,'','','','','','ezstring',209,'title',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:18:\"Title of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',210,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:24:\"Description of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',20,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',210,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:24:\"Description of feedback.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezstring',211,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:16:\"Name of product.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezstring',212,'product_number',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Model name or number.\";}','a:2:{s:6:\"eng-GB\";s:14:\"Product number\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',213,'short_description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Brief summary of product.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',214,'description',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Full description of product.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',213,'short_description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:25:\"Brief summary of product.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',214,'description',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:28:\"Full description of product.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,1,0,0,0,1,0,0,0,'','','','','','ezprice',215,'price',0,0,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Price of the product.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Price\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezimage',216,'image',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',217,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:24:\"Displayed beneath image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,5,0,0,0,'','','','','','ezrichtext',217,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:24:\"Displayed beneath image.\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezmultioption',218,'additional_options',0,0,1,8,'a:0:{}','a:1:{s:6:\"eng-GB\";s:97:\"You can create a drop-down list of additional options that the customer can buy with the product.\";}','a:2:{s:6:\"eng-GB\";s:18:\"Additional options\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',219,'star_rating',0,0,1,9,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',220,'tags',0,0,1,10,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',221,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:22:\"Title of landing page.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',222,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:70:\"Main content of the landing page, on the left column on large screens.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',222,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:70:\"Main content of the landing page, on the left column on large screens.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',223,'first_name',1,1,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Sender\'s name.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"First Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',224,'last_name',1,1,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Sender\'s last name.\";}','a:2:{s:6:\"eng-GB\";s:9:\"Last Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',225,'subject',1,1,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Title of feedback.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -467,34 +467,34 @@ INSERT INTO `ezcontentclass_attribute` VALUES (0,'',22,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezstring',230,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:22:\"Title of landing page.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezpage',231,'page',0,0,0,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:6:\"Layout\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezstring',232,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of Wiki.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',233,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',233,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',234,'star_rating',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',235,'tags',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Keywords for searching Wiki.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezboolean',236,'show_children',0,0,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:35:\"If checked Wiki subitems displayed.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Display sub items\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezstring',237,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of poll.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',238,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',238,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezoption',239,'question',1,1,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Text of the question.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Question\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'New file','','','','','ezstring',240,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Name of file.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',241,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',241,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',242,'file',0,1,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:20:\"Description of file.\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',243,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',244,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,150,0,0,0,'','','','','','ezstring',245,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Name of file.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',246,'caption',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Description of file that shows up on image.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',246,'caption',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:43:\"Description of file that shows up on image.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,2,0,0,0,'','','','','','ezimage',247,'image',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',248,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',249,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,255,0,0,0,'','','','','','ezstring',250,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Title of link.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',251,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of link.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,20,0,0,0,'','','','','','ezrichtext',251,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:26:\"Brief description of link.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,0,0,0,0,'','','','','','ezurl',252,'location',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:34:\"URL and description text on hover.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',28,0,0,0,0,0,0,1,0,'','','','','','ezboolean',253,'open_in_new_window',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Opens in new tab.\";}','a:2:{s:6:\"eng-GB\";s:18:\"Open in new window\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezstring',254,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Title of gallery.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',255,'short_description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Brief description of gallery.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',256,'description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Content of gallery.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',255,'short_description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Brief description of gallery.\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',256,'description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:19:\"Content of gallery.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezobjectrelation',257,'image',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:69:\"Image representing the gallery on frontpages and other listing pages.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',258,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:32:\"Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,0,0,0,0,'','','','','','ezstring',259,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:15:\"Title of forum.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',260,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Description of forum.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',30,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',260,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:21:\"Description of forum.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezstring',261,'subject',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Descriptive title.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,10,0,0,0,'','','','','','eztext',262,'message',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezboolean',263,'sticky',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:63:\"Allow users to add a sticky when creating or editing a message.\";}','a:2:{s:6:\"eng-GB\";s:6:\"Sticky\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -503,7 +503,7 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',32,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',32,0,0,0,0,10,0,0,0,'','','','','','eztext',266,'message',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,55,0,0,0,'','','','','','ezstring',267,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:38:\"Full descriptive title, not displayed.\";}','a:2:{s:6:\"eng-GB\";s:10:\"Full title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,19,0,0,0,'','','','','','ezstring',268,'short_title',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:41:\"Used in the listing page and in the menu.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',269,'text',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Summary of event.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Text\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',269,'text',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:17:\"Summary of event.\";}','a:2:{s:6:\"eng-GB\";s:4:\"Text\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',270,'category',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:29:\"Keywords for searching event.\";}','a:2:{s:6:\"eng-GB\";s:8:\"Category\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',33,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',271,'from_time',0,1,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:14:\"Starting time.\";}','a:2:{s:6:\"eng-GB\";s:9:\"From Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (0,'',33,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',272,'to_time',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:12:\"Ending time.\";}','a:2:{s:6:\"eng-GB\";s:7:\"To Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -516,19 +516,19 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,10,0,0,0,'','','','','','eztext',279,'image_map',0,0,0,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:38:\"Image implements as a navigation menu.\";}','a:2:{s:6:\"eng-GB\";s:9:\"Image map\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',280,'tags',0,0,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,0,0,0,0,'','','','','','ezstring',281,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:18:\"Descriptive title.\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',282,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',36,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',282,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:13:\"Body of text.\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezstring',283,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Name of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',284,'caption',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:20:\"Description of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',284,'caption',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:20:\"Description of file.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',285,'file',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',37,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',286,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:28:\"Allow users to rate content.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezstring',287,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Name of place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',288,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',288,'description',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezgmaplocation',290,'location',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:76:\"Geolocation associated to the Place, for instance, where the story happened.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',291,'keyword',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:61:\"For further searching tasks. Type keywords separate by a \",\".\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Keyword\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',292,'rating',0,0,1,6,'a:0:{}','a:2:{s:6:\"eng-GB\";s:26:\"Allow users to rate place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:6:\"Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezstring',293,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:14:\"Name of place.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezstring',294,'short_name',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:18:\"Short description.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:10:\"Short name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',295,'description',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',39,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',295,'description',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Body of text.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',296,'site_map_url',0,0,0,8,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:12:\"Site map URL\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',297,'tag_cloud_url',0,0,0,9,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Tag Cloud URL\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',298,'login_label',0,0,0,10,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:13:\"Login (label)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -562,7 +562,7 @@ INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','', INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','','','\n\n','ezobjectrelationlist',326,'object_relations',0,0,1,15,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:42:\"Stores relations to other content objects.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:19:\"A list of relations\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,1,0,0,0,'','','','','\n\n','ezselection',327,'multiple_selection',0,0,1,16,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:18:\"Allows selections.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:18:\"Multiple selection\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','','','\n\n','ezselection',328,'single_selection',0,0,1,17,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:29:\"Allows single selection only.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:16:\"Single selection\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); -INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',331,'xml_block',0,0,1,19,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Editorial\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); +INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,10,0,0,0,'','','','','','ezrichtext',331,'xml_block',0,0,1,19,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Editorial\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','','','','ezauthor',332,'authors',0,0,1,20,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:37:\"Stores info about additional authors.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:9:\"Author(s)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','','','','ezcountry',333,'country',0,0,1,21,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:22:\"Stores a user country.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Country\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); INSERT INTO `ezcontentclass_attribute` VALUES (1,'',40,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',334,'keywords',0,0,1,22,'a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:16:\"Stores Keywords.\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Keywords\";s:16:\"always-available\";s:6:\"eng-GB\";}',0); @@ -779,31 +779,31 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,9,14,0,0,'User','ezstring',29, INSERT INTO `ezcontentobject_attribute` VALUES (30,12,14,0,0,'','ezuser',30,'eng-GB',3,0,'',3); INSERT INTO `ezcontentobject_attribute` VALUES (30,12,14,0,0,'{\"login\":\"admin\",\"password_hash\":\"c78e3b0f3d9244ed8c6d1c29464bdff9\",\"email\":\"noreply@ez.no\",\"password_hash_type\":2}','ezuser',30,'eng-GB',3,0,'',4); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,41,0,0,'Media','ezstring',98,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,41,0,1045487555,'\n
','ezxmltext',99,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,41,0,1045487555,'\n
\n','ezrichtext',99,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,6,42,0,0,'Anonymous Users','ezstring',100,'eng-GB',3,0,'anonymous users',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,7,42,0,0,'User group for the anonymous user','ezstring',101,'eng-GB',3,0,'user group for the anonymous user',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,41,0,0,'','ezstring',103,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,41,0,1045487555,'','ezxmltext',105,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,41,0,1045487555,'\n
\n','ezrichtext',105,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,41,0,0,'','ezboolean',109,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,45,0,0,'Setup','ezstring',123,'eng-GB',3,0,'setup',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,45,0,0,'','ezstring',124,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,45,0,1045487555,'\n
','ezxmltext',125,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,45,0,1045487555,'\n
','ezxmltext',126,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,45,0,1045487555,'\n
\n','ezrichtext',125,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,45,0,1045487555,'\n
\n','ezrichtext',126,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,45,0,0,'','ezboolean',128,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,49,0,0,'Images','ezstring',142,'eng-GB',3,0,'images',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,49,0,0,'','ezstring',143,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,49,0,1045487555,'\n
','ezxmltext',144,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,49,0,1045487555,'\n
','ezxmltext',145,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,49,0,1045487555,'\n
\n','ezrichtext',144,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,49,0,1045487555,'\n
\n','ezrichtext',145,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,49,0,1,'','ezboolean',146,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,50,0,0,'Files','ezstring',147,'eng-GB',3,0,'files',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,50,0,0,'','ezstring',148,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,50,0,1045487555,'\n
','ezxmltext',149,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,50,0,1045487555,'\n
','ezxmltext',150,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,50,0,1045487555,'\n
\n','ezrichtext',149,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,50,0,1045487555,'\n
\n','ezrichtext',150,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,50,0,1,'','ezboolean',151,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,51,0,0,'Multimedia','ezstring',152,'eng-GB',3,0,'multimedia',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,51,0,0,'','ezstring',153,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,51,0,1045487555,'\n
','ezxmltext',154,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,51,0,1045487555,'\n
','ezxmltext',155,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,51,0,1045487555,'\n
\n','ezrichtext',154,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,51,0,1045487555,'\n
\n','ezrichtext',155,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,51,0,1,'','ezboolean',156,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,159,52,0,0,'Common INI settings','ezstring',157,'eng-GB',2,0,'common ini settings',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,160,52,0,0,'/content/view/full/2/','ezinisetting',158,'eng-GB',2,0,'',1); @@ -832,18 +832,18 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,180,14,0,0,'\n\n','ezimage',180,'eng-GB',3,0,'',4); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,56,0,NULL,'Design','ezstring',181,'eng-GB',3,0,'design',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,56,0,NULL,'','ezstring',182,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,56,0,1045487555,'\n
','ezxmltext',183,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,56,0,1045487555,'\n
','ezxmltext',184,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,56,0,1045487555,'\n
\n','ezrichtext',183,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,56,0,1045487555,'\n
\n','ezrichtext',184,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,158,56,0,1,'','ezboolean',185,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,230,57,0,NULL,'Home','ezstring',186,'eng-GB',3,0,'home',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,231,57,0,NULL,'\n\n 2ZonesLayout1\n \n left\n \n Main Story\n 865346aabbcc48a9839274cc554868be\n Campaign\n default\n \n \n \n Mixed Content\n 865346aabbcc48a9839274cc554868be\n ContentGrid\n 2_columns_2_rows\n \n \n \n Gallery\n 865346aabbcc48a9839274cc554868be\n Gallery\n default\n \n \n \n \n right\n \n White Paper\n f742abffba08fc849b6e80dec769a74c\n ContentGrid\n default\n \n \n \n Main Items\n f742abffba08fc849b6e80dec769a74c\n ContentGrid\n default\n \n \n \n News\n f742abffba08fc849b6e80dec769a74c\n FeedReader\n \n http://ez.no/rss/feed/blog\n 8\n 0\n \n default\n \n \n Selected Video\n f742abffba08fc849b6e80dec769a74c\n Video\n default\n \n \n \n Tags\n f742abffba08fc849b6e80dec769a74c\n TagCloud\n default\n \n 2\n \n \n \n\n','ezpage',187,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,58,0,NULL,'Footer','ezstring',188,'eng-GB',2,0,'footer',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,58,0,NULL,'footer','ezstring',189,'eng-GB',2,0,'footer',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,58,0,1045487555,'
eZ is a global company with offices around the world including Skien (Norway), New York (USA), Oslo (Norway), Cologne (Germany), Paris (France), Lyon (France), Tokyo (Japan), Katowice (Poland)Contact us for more information!
','ezxmltext',190,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,58,0,1045487555,'
  • eZ Official site: http://ez.no
  • eZ Community site: http://share.ez.no
  • Documentation: http://doc.ez.no
  • Follow us on Twitter, Facebook and LinkedIn
Copyright © 2014 eZ Systems AS (except where otherwise noted). All rights reserved.
','ezxmltext',191,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,58,0,1045487555,'\n
\n','ezxmltext',192,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,58,0,1045487555,'\n
eZ is a global company with offices around the world including Skien (Norway), New York (USA), Oslo (Norway), Cologne (Germany), Paris (France), Lyon (France), Tokyo (Japan), Katowice (Poland)Contact us for more information!
\n','ezrichtext',190,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,58,0,1045487555,'\n
eZ Official site: http://ez.noeZ Community site: http://share.ez.noDocumentation: http://doc.ez.noFollow us on Twitter, Facebook and LinkedInCopyright © 2014 eZ Systems AS (except where otherwise noted). All rights reserved.
\n','ezrichtext',191,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,58,0,1045487555,'\n
\n','ezrichtext',192,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,58,0,NULL,'\n\n','ezimage',193,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,58,0,1045487555,'
','ezxmltext',194,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,58,0,1045487555,'\n
\n','ezrichtext',194,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,58,0,0,'','ezgmaplocation',195,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,58,0,NULL,'\n\n','ezauthor',196,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,58,0,1341417600,'','ezdatetime',197,'eng-GB',2,1341417600,'',1); @@ -852,7 +852,7 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,192,58,0,NULL,'','ezkeyword',1 INSERT INTO `ezcontentobject_attribute` VALUES (0,230,59,0,NULL,'Getting Started','ezstring',200,'eng-GB',2,0,'getting started',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,231,59,0,NULL,'\n\n 2ZonesLayout2\n \n left\n \n Highlighted Feature\n c5ce576877ab71afb7c143ea3276db4f\n HighlightedItem\n default\n \n \n \n Main Features\n c5ce576877ab71afb7c143ea3276db4f\n ContentGrid\n 1_column_4_rows\n \n \n \n \n right\n \n \n fe8088a104581ea7faa6c00fe743f072\n Campaign\n default\n \n \n \n \n fe8088a104581ea7faa6c00fe743f072\n ContentGrid\n 2_columns_2_rows\n \n \n \n\n','ezpage',201,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,221,60,0,NULL,'Feedback','ezstring',202,'eng-GB',2,0,'feedback',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,222,60,0,1045487555,'
','ezxmltext',203,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,222,60,0,1045487555,'\n
\n','ezrichtext',203,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,223,60,0,NULL,'','ezstring',204,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,224,60,0,NULL,'','ezstring',205,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,225,60,0,NULL,'','ezstring',206,'eng-GB',2,0,'',1); @@ -862,16 +862,16 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,228,60,0,NULL,'','ezemail',209 INSERT INTO `ezcontentobject_attribute` VALUES (0,229,60,0,NULL,'tony.wood@ez.no','ezemail',210,'eng-GB',2,0,'tony.wood@ez.no',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,61,0,NULL,'Resources','ezstring',211,'eng-GB',3,0,'resources',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,61,0,NULL,'','ezstring',212,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,61,0,1045487555,'
','ezxmltext',213,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,61,0,1045487555,'
','ezxmltext',214,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,61,0,1045487555,'\n
\n','ezrichtext',213,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,61,0,1045487555,'\n
\n','ezrichtext',214,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (215,158,61,0,1,'','ezboolean',215,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,62,0,NULL,'eZ Publish Tutorials','ezstring',216,'eng-GB',2,0,'ez publish tutorials',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,62,0,NULL,'','ezstring',217,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,62,0,1045487555,'
  • Developing eZ Publish Extensions
  • Building mobile browser and hybrid applications with eZ Publish
','ezxmltext',218,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,62,0,1045487555,'
','ezxmltext',219,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,62,0,1045487555,'\n
\n','ezxmltext',220,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,62,0,1045487555,'\n
Developing eZ Publish ExtensionsBuilding mobile browser and hybrid applications with eZ Publish
\n','ezrichtext',218,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,62,0,1045487555,'\n
\n','ezrichtext',219,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,62,0,1045487555,'\n
\n','ezrichtext',220,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,62,0,NULL,'\n\n','ezimage',221,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,62,0,1045487555,'
','ezxmltext',222,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,62,0,1045487555,'\n
\n','ezrichtext',222,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,62,0,0,'','ezgmaplocation',223,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,62,0,NULL,'\n\n','ezauthor',224,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,62,0,0,'','ezdatetime',225,'eng-GB',2,0,'',1); @@ -879,11 +879,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,62,0,0,'','ezsrrating',226 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,62,0,NULL,'','ezkeyword',227,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,63,0,NULL,'eZ User Documentation','ezstring',228,'eng-GB',2,0,'ez user documentation',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,63,0,NULL,'','ezstring',229,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,63,0,1045487555,'
  • Administration Interface
  • Daily Tasks
  • Website Interface User Documentation
','ezxmltext',230,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,63,0,1045487555,'
','ezxmltext',231,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,63,0,1045487555,'\n
\n','ezxmltext',232,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,63,0,1045487555,'\n
Administration InterfaceDaily TasksWebsite Interface User Documentation
\n','ezrichtext',230,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,63,0,1045487555,'\n
\n','ezrichtext',231,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,63,0,1045487555,'\n
\n','ezrichtext',232,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,63,0,NULL,'\n\n','ezimage',233,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,63,0,1045487555,'
','ezxmltext',234,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,63,0,1045487555,'\n
\n','ezrichtext',234,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,63,0,0,'','ezgmaplocation',235,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,63,0,NULL,'\n\n','ezauthor',236,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,63,0,0,'','ezdatetime',237,'eng-GB',2,0,'',1); @@ -891,11 +891,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,63,0,0,'','ezsrrating',238 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,63,0,NULL,'','ezkeyword',239,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,64,0,NULL,'Technical Documentation','ezstring',240,'eng-GB',2,0,'technical documentation',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,64,0,NULL,'','ezstring',241,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,64,0,1045487555,'
  • Concepts and basics
  • Template language
  • REST API
','ezxmltext',242,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,64,0,1045487555,'
','ezxmltext',243,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,64,0,1045487555,'\n
\n','ezxmltext',244,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,64,0,1045487555,'\n
Concepts and basicsTemplate languageREST API
\n','ezrichtext',242,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,64,0,1045487555,'\n
\n','ezrichtext',243,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,64,0,1045487555,'\n
\n','ezrichtext',244,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,64,0,NULL,'\n\n','ezimage',245,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,64,0,1045487555,'
','ezxmltext',246,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,64,0,1045487555,'\n
\n','ezrichtext',246,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,64,0,0,'','ezgmaplocation',247,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,64,0,NULL,'\n\n','ezauthor',248,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,64,0,0,'','ezdatetime',249,'eng-GB',2,0,'',1); @@ -903,11 +903,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,64,0,0,'','ezsrrating',250 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,64,0,NULL,'','ezkeyword',251,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,65,0,NULL,'Demos and Videos','ezstring',252,'eng-GB',2,0,'demos and videos',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,65,0,NULL,'','ezstring',253,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,65,0,1045487555,'
  • Multichannel Content Management
  • Landingpage Management with eZ Flow
  • More Demos and Videos
','ezxmltext',254,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,65,0,1045487555,'
','ezxmltext',255,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,65,0,1045487555,'\n
\n','ezxmltext',256,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,65,0,1045487555,'\n
Multichannel Content ManagementLandingpage Management with eZ FlowMore Demos and Videos
\n','ezrichtext',254,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,65,0,1045487555,'\n
\n','ezrichtext',255,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,65,0,1045487555,'\n
\n','ezrichtext',256,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,65,0,NULL,'\n\n','ezimage',257,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,65,0,1045487555,'
','ezxmltext',258,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,65,0,1045487555,'\n
\n','ezrichtext',258,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,65,0,0,'','ezgmaplocation',259,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,65,0,NULL,'\n\n','ezauthor',260,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,65,0,0,'','ezdatetime',261,'eng-GB',2,0,'',1); @@ -915,16 +915,16 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,65,0,0,'','ezsrrating',262 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,65,0,NULL,'','ezkeyword',263,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,66,0,NULL,'Selected Features','ezstring',264,'eng-GB',3,0,'selected features',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,66,0,NULL,'','ezstring',265,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,66,0,1045487555,'
','ezxmltext',266,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,66,0,1045487555,'
','ezxmltext',267,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,66,0,1045487555,'\n
\n','ezrichtext',266,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,66,0,1045487555,'\n
\n','ezrichtext',267,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (268,158,66,0,1,'','ezboolean',268,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,67,0,NULL,'Automate','ezstring',269,'eng-GB',2,0,'automate',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,67,0,NULL,'','ezstring',270,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,67,0,1045487555,'
If Create, Deliver and Optimize is the winning formula, the last thing you want to do when you are there is to automate so that your online user experience is self-building!
','ezxmltext',271,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,67,0,1045487555,'
Identifying the right content, picking delivery strategy, understanding your metrics and optimizing your online presence to have your numbers on the up-side are tasks that requires a lot of work that no machine could do by itself. However, when you have identified the right recipes in that Create - Deliver - Optimize cycle, the next thing you want to do is automate as much as possible all the recurring tasks. That is where a platform like the eZ Publish Platform will deliver even more value, from Content sourcing and authoring to delivery workflow and marketing automation, relying on an integrated platform will help you automate the tasks that are taking your KPIs and your online business up!
','ezxmltext',272,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,67,0,1045487555,'
','ezxmltext',273,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,67,0,1045487555,'\n
If Create, Deliver and Optimize is the winning formula, the last thing you want to do when you are there is to automate so that your online user experience is self-building!
\n','ezrichtext',271,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,67,0,1045487555,'\n
Identifying the right content, picking delivery strategy, understanding your metrics and optimizing your online presence to have your numbers on the up-side are tasks that requires a lot of work that no machine could do by itself. However, when you have identified the right recipes in that Create - Deliver - Optimize cycle, the next thing you want to do is automate as much as possible all the recurring tasks. That is where a platform like the eZ Publish Platform will deliver even more value, from Content sourcing and authoring to delivery workflow and marketing automation, relying on an integrated platform will help you automate the tasks that are taking your KPIs and your online business up!
\n','ezrichtext',272,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,67,0,1045487555,'\n
\n','ezrichtext',273,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,67,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxNzo0MjoyMA==MTY4MQ==NzcwMjgx\n','ezimage',274,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,67,0,1045487555,'
','ezxmltext',275,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,67,0,1045487555,'\n
\n','ezrichtext',275,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,67,0,1,'','ezgmaplocation',276,'eng-GB',2,0,'Castor, Italy',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,67,0,NULL,'\n\n','ezauthor',277,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,67,0,0,'','ezdatetime',278,'eng-GB',2,0,'',1); @@ -932,11 +932,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,67,0,0,'','ezsrrating',279 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,67,0,NULL,'','ezkeyword',280,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,68,0,NULL,'Deliver','ezstring',281,'eng-GB',2,0,'deliver',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,68,0,NULL,'','ezstring',282,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,68,0,1045487555,'
Content consumption is changing rapidly. An agile solution to distribute your content and empower your digital business model is key to success in every industry.
','ezxmltext',283,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,68,0,1045487555,'
eZ Publish Enterprise is the platform to make the omni-channel approach possible. A powerful presentation engine provides a multiplicity of websites and pages that display your content in a variety of renderings. A powerful API directly and simply integrates your content with any Web-enabled application on any device, including the iPad, iPhone or Android without ever interfering with or impacting the platform itself.
','ezxmltext',284,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,68,0,1045487555,'
','ezxmltext',285,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,68,0,1045487555,'\n
Content consumption is changing rapidly. An agile solution to distribute your content and empower your digital business model is key to success in every industry.
\n','ezrichtext',283,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,68,0,1045487555,'\n
eZ Publish Enterprise is the platform to make the omni-channel approach possible. A powerful presentation engine provides a multiplicity of websites and pages that display your content in a variety of renderings. A powerful API directly and simply integrates your content with any Web-enabled application on any device, including the iPad, iPhone or Android without ever interfering with or impacting the platform itself.
\n','ezrichtext',284,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,68,0,1045487555,'\n
\n','ezrichtext',285,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,68,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxNzo0MDoyMw==MTY4MQ==NzcwMjgx\n','ezimage',286,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,68,0,1045487555,'
','ezxmltext',287,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,68,0,1045487555,'\n
\n','ezrichtext',287,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,68,0,1,'','ezgmaplocation',288,'eng-GB',2,0,'Castor, Italy',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,68,0,NULL,'\n\n','ezauthor',289,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,68,0,0,'','ezdatetime',290,'eng-GB',2,0,'',1); @@ -944,11 +944,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,68,0,0,'','ezsrrating',291 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,68,0,NULL,'','ezkeyword',292,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,69,0,NULL,'Create','ezstring',293,'eng-GB',2,0,'create',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,69,0,NULL,'','ezstring',294,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,69,0,1045487555,'
Increasing the productivity of your content infrastructure, eZ Publish Enterprise provides you with powerful tools to create, automate and collaborate on content...
','ezxmltext',295,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,69,0,1045487555,'
Dealing with hundreds of editors, having millions of content contributions from different sources and managing information with dozens of audiences can get complex. You get a single tool to create content whatever the content type is. From very simple and unstructured to highly structured content with complex metadata and rich media. eZ Publish Enterprise enables your non-technical contributors to manage complex content infrastructures and to collaborate with co-workers to get tasks done quickly.
','ezxmltext',296,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,69,0,1045487555,'
','ezxmltext',297,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,69,0,1045487555,'\n
Increasing the productivity of your content infrastructure, eZ Publish Enterprise provides you with powerful tools to create, automate and collaborate on content...
\n','ezrichtext',295,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,69,0,1045487555,'\n
Dealing with hundreds of editors, having millions of content contributions from different sources and managing information with dozens of audiences can get complex. You get a single tool to create content whatever the content type is. From very simple and unstructured to highly structured content with complex metadata and rich media. eZ Publish Enterprise enables your non-technical contributors to manage complex content infrastructures and to collaborate with co-workers to get tasks done quickly.
\n','ezrichtext',296,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,69,0,1045487555,'\n
\n','ezrichtext',297,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,69,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxNzozNjo1OQ==MTY4MQ==NzcwMjgx\n','ezimage',298,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,69,0,1045487555,'
','ezxmltext',299,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,69,0,1045487555,'\n
\n','ezrichtext',299,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,69,0,1,'','ezgmaplocation',300,'eng-GB',2,0,'Castor, Italy',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,69,0,NULL,'\n\n','ezauthor',301,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,69,0,0,'','ezdatetime',302,'eng-GB',2,0,'',1); @@ -956,11 +956,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,69,0,0,'','ezsrrating',303 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,69,0,NULL,'','ezkeyword',304,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,70,0,NULL,'Optimize','ezstring',305,'eng-GB',2,0,'optimize',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,70,0,NULL,'','ezstring',306,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,70,0,1045487555,'
It’s about the right content at the right time and in the right format!
','ezxmltext',307,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,70,0,1045487555,'
eZ Publish Enterprise offers an entire set of capabilities including search, analytics, personalized recommendations as well as automated and integrated testing functionality (e.g. A/B, Multivariate, etc.). Efficient search starts with enabling editors and letting them search for existing content to reuse and re-purpose. You can analyze the user behavior, create a compelling content strategy and provide automated scenarios based on the users\' behavior.
','ezxmltext',308,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,70,0,1045487555,'
','ezxmltext',309,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,70,0,1045487555,'\n
It’s about the right content at the right time and in the right format!
\n','ezrichtext',307,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,70,0,1045487555,'\n
eZ Publish Enterprise offers an entire set of capabilities including search, analytics, personalized recommendations as well as automated and integrated testing functionality (e.g. A/B, Multivariate, etc.). Efficient search starts with enabling editors and letting them search for existing content to reuse and re-purpose. You can analyze the user behavior, create a compelling content strategy and provide automated scenarios based on the users\' behavior.
\n','ezrichtext',308,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,70,0,1045487555,'\n
\n','ezrichtext',309,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,70,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxNzo0NDo1NA==MTY4MQ==NzcwMjgx\n','ezimage',310,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,70,0,1045487555,'
','ezxmltext',311,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,70,0,1045487555,'\n
\n','ezrichtext',311,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,70,0,1,'','ezgmaplocation',312,'eng-GB',2,0,'Castor, Italy',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,70,0,NULL,'\n\n','ezauthor',313,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,70,0,0,'','ezdatetime',314,'eng-GB',2,0,'',1); @@ -968,11 +968,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,70,0,0,'','ezsrrating',315 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,70,0,NULL,'','ezkeyword',316,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,71,0,NULL,'Getting Started with eZ Publish Platform','ezstring',317,'eng-GB',2,0,'getting started with ez publish platform',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,71,0,NULL,'','ezstring',318,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,71,0,1045487555,'
Welcome to eZ Publish Platform 5.4, the Castor release. This release brings several new features and general improvements on the foundations introduced in eZ Publish Platform 5
','ezxmltext',319,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,71,0,1045487555,'
Key Selected New Features in eZ Publish 5.4
Our objective is to provide you the most compelling Multichannel Web and Customer Experience Platform. With the eZ Publish 5 architecture we encompass a thoroughly revamped platform, which facilitates better user experiences, increases productivity, and enables your digital business model sustainably. Underlying and enabling these ambitious goals is a completely new but thoroughly backward compatible product architecture, along with a host of user interface (UI) enhancements. New in 5.4:
  • Native IO support
  • Faster multilingual and multisite search API
  • Native support for legacy DFS cluster
  • New image alias system
  • URL decorators
  • Premium content wall
  • Improved HTTP cache system
  • Simplified configuration 
For further information visit www.ez.no, the documentation: doc.ez.no and the share.ez.no community.
','ezxmltext',320,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,71,0,1045487555,'
Key new features you don\'t want to miss
eZ Publish Platform 5.4 provides a range of core improvements to the eZ platform that will be core to eZ Platform in the future. You clearly want to know about the benefits for your eZ Publish project...
','ezxmltext',321,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,71,0,1045487555,'\n
Welcome to eZ Publish Platform 5.4, the Castor release. \nThis release brings several new features and general improvements on the foundations introduced in eZ Publish Platform 5
\n','ezrichtext',319,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,71,0,1045487555,'\n
Key Selected New Features in eZ Publish 5.4Our objective is to provide you the most compelling Multichannel Web and Customer Experience Platform. With the eZ Publish 5 architecture we encompass a thoroughly revamped platform, which facilitates better user experiences, increases productivity, and enables your digital business model sustainably. Underlying and enabling these ambitious goals is a completely new but thoroughly backward compatible product architecture, along with a host of user interface (UI) enhancements. New in 5.4:Native IO supportFaster multilingual and multisite search APINative support for legacy DFS clusterNew image alias systemURL decoratorsPremium content wallImproved HTTP cache systemSimplified configuration For further information visit www.ez.no, the documentation: doc.ez.no and the share.ez.no community.
\n','ezrichtext',320,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,71,0,1045487555,'\n
Key new features you don\'t want to misseZ Publish Platform 5.4 provides a range of core improvements to the eZ platform that will be core to eZ Platform in the future. You clearly want to know about the benefits for your eZ Publish project...
\n','ezrichtext',321,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,71,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxNzoxMzoyMQ==MTY4MQ==NzcwMzc4\n','ezimage',322,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,71,0,1045487555,'
','ezxmltext',323,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,71,0,1045487555,'\n
\n','ezrichtext',323,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,71,0,1,'','ezgmaplocation',324,'eng-GB',2,0,'Castor, Italy',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,71,0,NULL,'\n\n','ezauthor',325,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,71,0,0,'','ezdatetime',326,'eng-GB',2,0,'',1); @@ -982,61 +982,61 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,230,72,0,NULL,'Shopping','ezst INSERT INTO `ezcontentobject_attribute` VALUES (0,231,72,0,NULL,'\n\n 2ZonesLayout1\n \n left\n \n \n 1b6149311bf4ece4717e6fff905e148c\n ContentGrid\n 2_columns_2_rows\n \n \n \n \n right\n \n Products\n 6669bce3079221f326d4eb4121447fd9\n ContentGrid\n default\n \n \n \n \n 6669bce3079221f326d4eb4121447fd9\n Video\n default\n \n \n \n\n','ezpage',330,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,73,0,NULL,'Products','ezstring',331,'eng-GB',3,0,'products',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,73,0,NULL,'','ezstring',332,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,73,0,1045487555,'
','ezxmltext',333,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,73,0,1045487555,'
','ezxmltext',334,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,73,0,1045487555,'\n
\n','ezrichtext',333,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,73,0,1045487555,'\n
\n','ezrichtext',334,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (335,158,73,0,1,'','ezboolean',335,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,211,74,0,NULL,'eZ Publish Community - iPhone 4 Case','ezstring',336,'eng-GB',2,0,'ez publish community - iphone 4 case',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,212,74,0,NULL,'','ezstring',337,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,213,74,0,1045487555,'
Protect your iPhone 4 with a customizable iPhone 4 case.
','ezxmltext',338,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,214,74,0,1045487555,'
Made of lightweight hard shell plastic, this case protects the back and sides of your iPhone 4 without adding bulk. Made with a matte finish, your designs, photos, and text will look great displayed on this one of a kind case.
  • Designed for Apple’s iPhone 4.
  • Hard shell plastic case with matte finish.
  • Access to all ports, controls & sensors.
  • Customize with photos, artwork and text.
','ezxmltext',339,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,213,74,0,1045487555,'\n
Protect your iPhone 4 with a customizable iPhone 4 case.
\n','ezrichtext',338,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,214,74,0,1045487555,'\n
Made of lightweight hard shell plastic, this case protects the back and sides of your iPhone 4 without adding bulk. Made with a matte finish, your designs, photos, and text will look great displayed on this one of a kind case.Designed for Apple’s iPhone 4.Hard shell plastic case with matte finish.Access to all ports, controls & sensors.Customize with photos, artwork and text.
\n','ezrichtext',339,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,215,74,35.95,NULL,'','ezprice',340,'eng-GB',2,3595,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,216,74,0,NULL,'\n\n','ezimage',341,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,217,74,0,1045487555,'
Case Savvy iPhone 4 Matte Finish Case
','ezxmltext',342,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,217,74,0,1045487555,'\n
Case Savvy iPhone 4 Matte Finish Case
\n','ezrichtext',342,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,218,74,0,NULL,'\nStyle option\n','ezmultioption',343,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,219,74,0,0,'','ezsrrating',344,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,220,74,0,NULL,'','ezkeyword',345,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,211,75,0,NULL,'eZ Publish - Samsung Galaxy SIII Case','ezstring',346,'eng-GB',2,0,'ez publish - samsung galaxy siii case',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,212,75,0,NULL,'','ezstring',347,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,213,75,0,1045487555,'
Pump up your Galaxy S3 with the customizable Case-Mate Vibe case from Zazzle.
','ezxmltext',348,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,214,75,0,1045487555,'
Contoured perfectly to fit the Galaxy S3, this case features a hard shell plastic exterior and shock absorbing liner to protect your device from daily wear and tear. Sleek and lightweight, this case is the perfect way to share your custom style with the world.
  • Impact resistant & lightweight hard plastic case with rubber lined interior.
  • Designed for the Samsung Galaxy S3 (AT&T, Verizon, T-Mobile, and Sprint models).
  • Printed in the USA.
','ezxmltext',349,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,213,75,0,1045487555,'\n
Pump up your Galaxy S3 with the customizable Case-Mate Vibe case from Zazzle.
\n','ezrichtext',348,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,214,75,0,1045487555,'\n
Contoured perfectly to fit the Galaxy S3, this case features a hard shell plastic exterior and shock absorbing liner to protect your device from daily wear and tear. Sleek and lightweight, this case is the perfect way to share your custom style with the world.Impact resistant & lightweight hard plastic case with rubber lined interior.Designed for the Samsung Galaxy S3 (AT&T, Verizon, T-Mobile, and Sprint models).Printed in the USA.
\n','ezrichtext',349,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,215,75,44.95,NULL,'','ezprice',350,'eng-GB',2,4495,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,216,75,0,NULL,'\n\n','ezimage',351,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,217,75,0,1045487555,'
Case-Mate Samsung Galaxy S3 Vibe Case
','ezxmltext',352,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,217,75,0,1045487555,'\n
Case-Mate Samsung Galaxy S3 Vibe Case
\n','ezrichtext',352,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,218,75,0,NULL,'\n\n','ezmultioption',353,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,219,75,0,0,'','ezsrrating',354,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,220,75,0,NULL,'','ezkeyword',355,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,211,76,0,NULL,'eZ Publish Community Mug','ezstring',356,'eng-GB',2,0,'ez publish community mug',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,212,76,0,NULL,'','ezstring',357,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,213,76,0,1045487555,'
Morphing Mug
','ezxmltext',358,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,214,76,0,1045487555,'
A truly unique mug. When it’s cold, it’s just a simple black mug. When you add any hot beverage (water, tea, coffee, etc.), your mug turns white and the image comes to life in vibrant colors. 11 oz. Hand wash only. Imported.
','ezxmltext',359,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,213,76,0,1045487555,'\n
Morphing Mug
\n','ezrichtext',358,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,214,76,0,1045487555,'\n
A truly unique mug. When it’s cold, it’s just a simple black mug. When you add any hot beverage (water, tea, coffee, etc.), your mug turns white and the image comes to life in vibrant colors. 11 oz. Hand wash only. Imported.
\n','ezrichtext',359,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,215,76,19.95,NULL,'','ezprice',360,'eng-GB',2,1995,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,216,76,0,NULL,'\n\n','ezimage',361,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,217,76,0,1045487555,'
','ezxmltext',362,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,217,76,0,1045487555,'\n
\n','ezrichtext',362,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,218,76,0,NULL,'\nSize\n','ezmultioption',363,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,219,76,0,0,'','ezsrrating',364,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,220,76,0,NULL,'','ezkeyword',365,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,211,77,0,NULL,'eZ Publish - Man jacket','ezstring',366,'eng-GB',2,0,'ez publish - man jacket',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,212,77,0,NULL,'','ezstring',367,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,213,77,0,1045487555,'
American Apparel California Fleece Track Jacket
','ezxmltext',368,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,214,77,0,1045487555,'
This best-selling California Fleece track jacket by American Apparel is extra thick for added warmth, yet it\'s breathable. Stay comfortable while walking, jogging, or hanging out outside with this jacket made of 100% extra soft ringspun combed cotton. Featuring contrast white piping and zipper, you\'ll look and feel vibrant when wearing this to all of your favorite activities.
','ezxmltext',369,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,213,77,0,1045487555,'\n
American Apparel California Fleece Track Jacket
\n','ezrichtext',368,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,214,77,0,1045487555,'\n
This best-selling California Fleece track jacket by American Apparel is extra thick for added warmth, yet it\'s breathable. Stay comfortable while walking, jogging, or hanging out outside with this jacket made of 100% extra soft ringspun combed cotton. Featuring contrast white piping and zipper, you\'ll look and feel vibrant when wearing this to all of your favorite activities.
\n','ezrichtext',369,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,215,77,56.45,NULL,'','ezprice',370,'eng-GB',2,5645,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,216,77,0,NULL,'\n\n','ezimage',371,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,217,77,0,1045487555,'
American Apparel California Fleece Track Jacket
','ezxmltext',372,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,217,77,0,1045487555,'\n
American Apparel California Fleece Track Jacket
\n','ezrichtext',372,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,218,77,0,NULL,'\n\n','ezmultioption',373,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,219,77,0,0,'','ezsrrating',374,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,220,77,0,NULL,'','ezkeyword',375,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,78,0,NULL,'Services','ezstring',376,'eng-GB',3,0,'services',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,78,0,NULL,'','ezstring',377,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,78,0,1045487555,'
','ezxmltext',378,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,78,0,1045487555,'
','ezxmltext',379,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,78,0,1045487555,'\n
\n','ezrichtext',378,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,78,0,1045487555,'\n
\n','ezrichtext',379,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (380,158,78,0,1,'','ezboolean',380,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,79,0,NULL,'Support & Maintenance','ezstring',381,'eng-GB',2,0,'support & maintenance',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,79,0,NULL,'','ezstring',382,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,79,0,1045487555,'
Product Support is the core service of the eZ Publish Enterprise subscription, available to all our customers, with differing initial response times depending on the subscription service level. Subscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team.
','ezxmltext',383,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,79,0,1045487555,'
Dedicated, Responsive and Efficient
Product Support is the core service of the eZ Publish Enterprise subscription, available to all our customers, with differing initial response times depending on the subscription service level.
Unlimited Product Support
In addition to the available documentation and books, Enterprise subscribers have access to a highly professional support service which provides 3 tiers of support, escalation processes and both online and phone access. Our highly qualified, experienced product support teams are dedicated to the success of our customers. They ensure that your projects are successful and that you are totally satisfied with eZ. eZ is dedicated to helping and supporting both clients and partners. This is the core service of eZ\'s Enterprise Open Source Business model.
Access to extended solution support
In addition to maintenance, you may want assistance from our professional services team to help manage your platform or assist with eZ Publish-based application development. With eZ Publish Enterprise, you are free to include extended services from our professional services staff. They are on-hand to help you implement and run your platform. Services differ depending on your region. They can include solution support tickets, regular audits, technical key accounting or training services.No single solution is right for everyone, and just as one size does not fit all, you will discuss extended solution support with our sales engineer to define the specific package that fits your needs!In the event that you need a one-time intervention, you have the flexibility to order specific professional services in addition to your service subscription at a moment’s notice.
Keep Your Platform Secure and Up-to-Date
Subscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team.
eZ Publish Enterprise maintenance
Subscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team. In addition, eZ is constantly actively maintaining and assuring the quality of our software. With an eZ Publish Enterprise subscription, your installation will benefit from our quality assurance programs, which feature service packs to fix issues identified in the software as well as improve or enhance it in a variety of ways. eZ Publish Enterprise subscription is the best option for ensuring your eZ Publish platform is stable, reliable and continuously supported by our support services.
eZ Publish bug fix guarantee
By subscribing to eZ Publish Enterprise, you benefit from an unique bug fix guarantee that cannot be obtained in any other way. eZ, as the maker of eZ Publish, deploys the necessary resources in order to fix the bugs you identify via the maintenance service.If need be, and depending of the service level of your subscription, eZ will provide hot fixes - a rapid-response measure to workaround issues before the fix is even available in the maintenance service.
','ezxmltext',384,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,79,0,1045487555,'\n
\n','ezxmltext',385,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,79,0,1045487555,'\n
Product Support is the core service of the eZ Publish Enterprise subscription, available to all our customers, with differing initial response times depending on the subscription service level. Subscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team.
\n','ezrichtext',383,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,79,0,1045487555,'\n
Dedicated, Responsive and EfficientProduct Support is the core service of the eZ Publish Enterprise subscription, available to all our customers, with differing initial response times depending on the subscription service level.Unlimited Product SupportIn addition to the available documentation and books, Enterprise subscribers have access to a highly professional support service which provides 3 tiers of support, escalation processes and both online and phone access. Our highly qualified, experienced product support teams are dedicated to the success of our customers. They ensure that your projects are successful and that you are totally satisfied with eZ. eZ is dedicated to helping and supporting both clients and partners. This is the core service of eZ\'s Enterprise Open Source Business model.Access to extended solution supportIn addition to maintenance, you may want assistance from our professional services team to help manage your platform or assist with eZ Publish-based application development. With eZ Publish Enterprise, you are free to include extended services from our professional services staff. They are on-hand to help you implement and run your platform. Services differ depending on your region. They can include solution support tickets, regular audits, technical key accounting or training services.No single solution is right for everyone, and just as one size does not fit all, you will discuss extended solution support with our sales engineer to define the specific package that fits your needs!In the event that you need a one-time intervention, you have the flexibility to order specific professional services in addition to your service subscription at a moment’s notice.Keep Your Platform Secure and Up-to-DateSubscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team.eZ Publish Enterprise maintenanceSubscribing to eZ Publish Enterprise gives you the option of requesting assistance from our product support team. In addition, eZ is constantly actively maintaining and assuring the quality of our software. With an eZ Publish Enterprise subscription, your installation will benefit from our quality assurance programs, which feature service packs to fix issues identified in the software as well as improve or enhance it in a variety of ways. eZ Publish Enterprise subscription is the best option for ensuring your eZ Publish platform is stable, reliable and continuously supported by our support services.eZ Publish bug fix guaranteeBy subscribing to eZ Publish Enterprise, you benefit from an unique bug fix guarantee that cannot be obtained in any other way. eZ, as the maker of eZ Publish, deploys the necessary resources in order to fix the bugs you identify via the maintenance service.If need be, and depending of the service level of your subscription, eZ will provide hot fixes - a rapid-response measure to workaround issues before the fix is even available in the maintenance service.
\n','ezrichtext',384,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,79,0,1045487555,'\n
\n','ezrichtext',385,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,79,0,NULL,'\n\n','ezimage',386,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,79,0,1045487555,'
Photo: Martin Bekkelund, Friprogsenteret. CC Some rights reserved
','ezxmltext',387,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,79,0,1045487555,'\n
Photo: Martin Bekkelund, Friprogsenteret. CC Some rights reserved
\n','ezrichtext',387,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,79,0,0,'','ezgmaplocation',388,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,79,0,NULL,'\n\n','ezauthor',389,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,79,0,0,'','ezdatetime',390,'eng-GB',2,0,'',1); @@ -1044,11 +1044,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,79,0,0,'','ezsrrating',391 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,79,0,NULL,'','ezkeyword',392,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,80,0,NULL,'Professional Services','ezstring',393,'eng-GB',2,0,'professional services',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,80,0,NULL,'','ezstring',394,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,80,0,1045487555,'
eZ offers Expert Consulting and Audits via our Professional Services to help keep your eZ websites on-time, on-track and performing at peak levels. Our goal is that your implementation succeeds and that you get your message out on-time and on-budget.
','ezxmltext',395,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,80,0,1045487555,'
eZ offers professional services to assist partners and/or clients with unusually complex situations that require specific project assistance. The scope is determined and customized prior to the time of engagement. Work can be performed remotely or on the client premises according to project needs.
','ezxmltext',396,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,80,0,1045487555,'\n
\n','ezxmltext',397,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,80,0,1045487555,'\n
eZ offers Expert Consulting and Audits via our Professional Services to help keep your eZ websites on-time, on-track and performing at peak levels. Our goal is that your implementation succeeds and that you get your message out on-time and on-budget.
\n','ezrichtext',395,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,80,0,1045487555,'\n
eZ offers professional services to assist partners and/or clients with unusually complex situations that require specific project assistance. The scope is determined and customized prior to the time of engagement. Work can be performed remotely or on the client premises according to project needs.
\n','ezrichtext',396,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,80,0,1045487555,'\n
\n','ezrichtext',397,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,80,0,NULL,'\nUGljYXNhNDY=MDIyMA==MTYwMA==OTAxMTQ2NzkyNzNlNmY3MzczM2U2ZjE5MzBkYWJiZWZmYmQyMTk=\n','ezimage',398,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,80,0,1045487555,'
Photo: Petri Mertanen
','ezxmltext',399,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,80,0,1045487555,'\n
Photo: Petri Mertanen
\n','ezrichtext',399,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,80,0,0,'','ezgmaplocation',400,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,80,0,NULL,'\n\n','ezauthor',401,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,80,0,0,'','ezdatetime',402,'eng-GB',2,0,'',1); @@ -1056,11 +1056,11 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,80,0,0,'','ezsrrating',403 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,80,0,NULL,'','ezkeyword',404,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,81,0,NULL,'Training Services','ezstring',405,'eng-GB',2,0,'training services',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,81,0,NULL,'','ezstring',406,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,81,0,1045487555,'
eZ Systems can offer your company the expert training you require to get the most out of eZ Publish. We have training scheduled in our regional offices, please check our Training Calendar. For groups of four or more, eZ can arrange training sessions that fit your schedule. 
','ezxmltext',407,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,81,0,1045487555,'
Essential Training
The eZ Publish essential training packages will help you get an easy introduction to the enterprise Content Management System eZ Publish.There are two target groups, technical skilled people like CMS beginners and de...more »
Special Topics Training
If you already have some experience with eZ Publish and want to get a deeper knowledge in special topics like enterprise search, website optimization, analytics or recommendations? You can select here from different s...more »
Update Training
New eZ Publish version released ? If you need an overview of the new features and changes of a new eZ Publish version, simply book our update training and you will learn everything about the new version. You learn the...more »
Custom Training
If you have special topics which we did not mention in the categories above? We can design a training only for you. You define your interests and we prepare special training material matching your needs. Custom traini...more »
eZ Partner Training
Participation in the eZ System Partner Program affords the ability to offer eZ training curriculum, add value to offerings, enhance training business and opens doors to the eZ\'s ecosystem of partners and customers, wh...more »
Online Certification
Most trainings are combined with the option of an online certification. eZ systems offers to perform an online exam with an automated tool.
','ezxmltext',408,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,81,0,1045487555,'\n
\n','ezxmltext',409,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,81,0,1045487555,'\n
eZ Systems can offer your company the expert training you require to get the most out of eZ Publish. We have training scheduled in our regional offices, please check our Training Calendar. For groups of four or more, eZ can arrange training sessions that fit your schedule. 
\n','ezrichtext',407,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,81,0,1045487555,'\n
<link xlink:href=\"ezurl://42\" xlink:show=\"none\">Essential Training</link>The eZ Publish essential training packages will help you get an easy introduction to the enterprise Content Management System eZ Publish.There are two target groups, technical skilled people like CMS beginners and de...more »<link xlink:href=\"ezurl://43\" xlink:show=\"none\">Special Topics Training</link>If you already have some experience with eZ Publish and want to get a deeper knowledge in special topics like enterprise search, website optimization, analytics or recommendations? You can select here from different s...more »<link xlink:href=\"ezurl://44\" xlink:show=\"none\">Update Training</link>New eZ Publish version released ? If you need an overview of the new features and changes of a new eZ Publish version, simply book our update training and you will learn everything about the new version. You learn the...more »<link xlink:href=\"ezurl://45\" xlink:show=\"none\">Custom Training</link>If you have special topics which we did not mention in the categories above? We can design a training only for you. You define your interests and we prepare special training material matching your needs. Custom traini...more »<link xlink:href=\"ezurl://46\" xlink:show=\"none\">eZ Partner Training</link>Participation in the eZ System Partner Program affords the ability to offer eZ training curriculum, add value to offerings, enhance training business and opens doors to the eZ\'s ecosystem of partners and customers, wh...more »<link xlink:href=\"ezurl://47\" xlink:show=\"none\">Online Certification</link>Most trainings are combined with the option of an online certification. eZ systems offers to perform an online exam with an automated tool.
\n','ezrichtext',408,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,81,0,1045487555,'\n
\n','ezrichtext',409,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,81,0,NULL,'\nQ2Fub24=Q2Fub24gRElHSVRBTCBJWFVTIDMwMA==MTgwLzE=Mg==MTgwLzE=UGljYXNhIDMuMA==MjAwODowOTozMCAwODo1Nzo0Mw==MQ==MjEwMS8yNQ==MzUvMTA=MDIyMA==MjAwODowOTozMCAwODo1Nzo0Mw==MjAwODowOTozMCAwODo1Nzo0Mw==AQIDAA==My8xMTQ5LzMyMTE2LzMyMC8zMTE2LzMyNQ==MTY=ODQ2Mi8xMDAwEQABAAMALgAAAJIDAAACAAMABAAAAO4DAAADAAMABAAAAPYDAAAEAAMAIgAAAP4DAAAAAAMABgAAAEIEAAAAAAMACQAAAE4EAAASAAMAHAAAAGAEAAATAAMABAAAAJgEAAAGAAIAGQAAAKAEAAAHAAIAFgAAAMAEAAAIAAQAAQAAAAwNHAAJAAIAIAAAANgEAAAQAAQAAQAAAAAAVQENAAQAVgAAAPgEAAAYAAEAAAEAAFAGAAAZAAMAAQAAAAEAAAAcAAMAAQAAAAAAAAAAAAAAXAACAAAAAwAAAAEAAAAEAP//AQAAABgAAAAAAAAAAAAPAAMAAQAFIAAA/3////hDqBboA3QAtQD//wAAAAAAAAAAAAD//wAAAAgACAAAAAAAAAAA/3//fwAAAAACAA4hAgACAAAAAAAAAAAARABAAIAAUQB0AJUAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAQA2AgAAcACaAAAAAAAKAPoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAABAAAAAAAAAAAAAAAJAAEAAAgABgAIAAFxAS4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAASU1HOkRJR0lUQUwgSVhVUyAzMCBKUEVHAAAAAAAAAABGaXJtd2FyZSBWZXJzaW9uIDEuMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAOUAAAAfAAAAAAAAAAoAAAAfAAAAAAAAAAAAAAAPAAAACgAAANUAAADlAAAAUQEAAAAAAAAvAAAA1QAAAEoCAAAAAAAAAAAAAAAAAAA0AAAAYQAAAKYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AQAAAAAAAF4AAAClAAAAAAAAAAAAAAAABAAAAAUAAF8AAACjAAAAFQAAAK8DAADFBQAA2wYAAK8DAAABAAAAfQIAAFEBAAD0AAAA4AEAAPsAAAAGAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAHAEAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABIAQAAbgEAAAAAAAAAAAAAAQAAAAAAAAA4JQAABAAAAAEAAAAfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElJKgCmAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDEwMA==NjU1MzU=MTgzOA==MTEwNQ==MjIwMg==MjA0ODAwMC8yMjQ=MTUzNjAwMC8xNjg=Mg==Mg==Aw==MA==MA==MA==MjA0OC8yMDQ4MA==YmQ4ZjAyMDA1YjMxOGUzYjJmZDAwNmViY2ZiMjk1MmE=\n','ezimage',410,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,81,0,1045487555,'
Photo: Petri Mertanen
','ezxmltext',411,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,81,0,1045487555,'\n
Photo: Petri Mertanen
\n','ezrichtext',411,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,81,0,0,'','ezgmaplocation',412,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,81,0,NULL,'\n\n','ezauthor',413,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,81,0,0,'','ezdatetime',414,'eng-GB',2,0,'',1); @@ -1068,59 +1068,59 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,191,81,0,0,'','ezsrrating',415 INSERT INTO `ezcontentobject_attribute` VALUES (0,192,81,0,NULL,'','ezkeyword',416,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,82,0,NULL,'eZ Publish Enterprise Service','ezstring',417,'eng-GB',2,0,'ez publish enterprise service',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,82,0,NULL,'','ezstring',418,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,82,0,1045487555,'
Joining the leading companies who subscribe to eZ Publish Enterprise brings a long list of benefits, services and tools designed to improve and secure your content platform.
','ezxmltext',419,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,82,0,1045487555,'\n
The best of two worlds
eZ Publish Enterprise is the best choice for organizations employing eZ Publish in a professional environment. eZ Publish Enterprise comes with all the benefits of the open source eZ Publish community project, which is founded on innovative software created by eZ in collaboration with a global user base. The software is based on open standards, but packaged with a professional software and services package that is standardized, stable and solid. The Enterprise subscription includes support and bug fix guarantees, monitoring, and other value-added services. 
The license that fits
Clear, concise intellectual property framework is another competitive advantage that sets eZ Publish Enterprise apart. Our customers are free to select the license that fits their business: either the traditional General Public License (GPL), or the professional Personal Use License (PUL). In either case, eZ Systems controls the intellectual property rights of the software, so there’s no concern about conflicts of interest between software contributors.
Access to a dedicated Service Portal
Your subscription to eZ Publish Enterprise entitles you to a dedicated Service Portal for communication and collaboration with our teams. In addition, you will receive secured extranet access for each service user for streamlined communication with eZ.Important features of the Service Portal includes a support issue tracker, detailed summary of your subscription and its certified software, as well as access to maintenance and monitoring information.Product Support is the core service of the eZ Publish Enterprise subscription, available to all our customers with differing initial response times depending on the subscription service level.
\n','ezxmltext',420,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,82,0,1045487555,'\n
\n','ezxmltext',421,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,82,0,1045487555,'\n
Joining the leading companies who subscribe to eZ Publish Enterprise brings a long list of benefits, services and tools designed to improve and secure your content platform.
\n','ezrichtext',419,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,82,0,1045487555,'\n
listitem05The best of two worldseZ Publish Enterprise is the best choice for organizations employing eZ Publish in a professional environment. eZ Publish Enterprise comes with all the benefits of the open source eZ Publish community project, which is founded on innovative software created by eZ in collaboration with a global user base. The software is based on open standards, but packaged with a professional software and services package that is standardized, stable and solid. The Enterprise subscription includes support and bug fix guarantees, monitoring, and other value-added services. The license that fitsClear, concise intellectual property framework is another competitive advantage that sets eZ Publish Enterprise apart. Our customers are free to select the license that fits their business: either the traditional General Public License (GPL), or the professional Personal Use License (PUL). In either case, eZ Systems controls the intellectual property rights of the software, so there’s no concern about conflicts of interest between software contributors.Access to a dedicated Service PortalYour subscription to eZ Publish Enterprise entitles you to a dedicated Service Portal for communication and collaboration with our teams. In addition, you will receive secured extranet access for each service user for streamlined communication with eZ.Important features of the Service Portal includes a support issue tracker, detailed summary of your subscription and its certified software, as well as access to maintenance and monitoring information.Product Support is the core service of the eZ Publish Enterprise subscription, available to all our customers with differing initial response times depending on the subscription service level.
\n','ezrichtext',420,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,82,0,1045487555,'\n
\n','ezrichtext',421,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,82,0,NULL,'\nUGljYXNhTkdVWUVOIERJTkggUXVvYy1IdXk=TkdVWUVOIERJTkggUXVvYy1IdXkgLSBRSCBQaG90b2dyYXBoeQ==MTI4MDIyMA==ODAwNTMx\n','ezimage',422,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,82,0,1045487555,'
Copyright: QH Photography
','ezxmltext',423,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,82,0,1045487555,'\n
Copyright: QH Photography
\n','ezrichtext',423,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,82,0,1,'','ezgmaplocation',424,'eng-GB',2,0,'Manhattan New York',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,82,0,NULL,'\n\n','ezauthor',425,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,82,0,0,'','ezdatetime',426,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,191,82,0,0,'','ezsrrating',427,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,192,82,0,NULL,'','ezkeyword',428,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,83,0,NULL,'squares','ezstring',429,'eng-GB',2,0,'squares',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,83,0,1045487555,'
','ezxmltext',430,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,83,0,1045487555,'\n
\n','ezrichtext',430,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,83,0,NULL,'\n\n','ezimage',431,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,83,0,0,'','ezsrrating',432,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,83,0,NULL,'','ezkeyword',433,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,84,0,NULL,'Partner','ezstring',434,'eng-GB',3,0,'partner',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,84,0,NULL,'','ezstring',435,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,84,0,1045487555,'
In this section you find information that is restricted based on login privileges. This is done by assigning a non-public section to the content, in this case \"Restricted\" is used.
','ezxmltext',436,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,84,0,1045487555,'
','ezxmltext',437,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,84,0,1045487555,'\n
In this section you find information that is restricted based on login privileges. This is done by assigning a non-public section to the content, in this case \"Restricted\" is used.
\n','ezrichtext',436,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,84,0,1045487555,'\n
\n','ezrichtext',437,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (438,158,84,0,1,'','ezboolean',438,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,240,85,0,NULL,'eZ Logo Black','ezstring',439,'eng-GB',2,0,'ez logo black',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,241,85,0,1045487555,'
150 DPI PNG version of the eZ Logo.
','ezxmltext',440,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,241,85,0,1045487555,'\n
150 DPI PNG version of the eZ Logo.
\n','ezrichtext',440,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,242,85,0,NULL,'','ezbinaryfile',441,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,243,85,0,0,'','ezsrrating',442,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,244,85,0,NULL,'','ezkeyword',443,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,240,86,0,NULL,'eZ Logo White','ezstring',444,'eng-GB',2,0,'ez logo white',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,241,86,0,1045487555,'
eZ Logo 150DPI in PNG format.
','ezxmltext',445,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,241,86,0,1045487555,'\n
eZ Logo 150DPI in PNG format.
\n','ezrichtext',445,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,242,86,0,NULL,'','ezbinaryfile',446,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,243,86,0,0,'','ezsrrating',447,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,244,86,0,NULL,'','ezkeyword',448,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,4,87,0,NULL,'Logos','ezstring',449,'eng-GB',3,0,'logos',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,155,87,0,NULL,'','ezstring',450,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,119,87,0,1045487555,'
','ezxmltext',451,'eng-GB',3,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,156,87,0,1045487555,'
','ezxmltext',452,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,119,87,0,1045487555,'\n
\n','ezrichtext',451,'eng-GB',3,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,156,87,0,1045487555,'\n
\n','ezrichtext',452,'eng-GB',3,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (453,158,87,0,1,'','ezboolean',453,'eng-GB',3,1,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,193,88,0,NULL,'Blog','ezstring',454,'eng-GB',2,0,'blog',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,194,88,0,1045487555,'
','ezxmltext',455,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,194,88,0,1045487555,'\n
\n','ezrichtext',455,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,195,88,0,NULL,'','ezkeyword',456,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,196,89,0,NULL,'This will be our magic recipe','ezstring',457,'eng-GB',2,0,'this will be our magic recipe',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,197,89,0,1045487555,'\n
Pretty simple:
\n','ezxmltext',458,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,197,89,0,1045487555,'\n
Pretty simple:large05
\n','ezrichtext',458,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,198,89,0,1332932400,'','ezdatetime',459,'eng-GB',2,1332932400,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,199,89,0,NULL,'','ezkeyword',460,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,254,90,0,NULL,'Gallery','ezstring',461,'eng-GB',2,0,'gallery',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,255,90,0,1045487555,'
','ezxmltext',462,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,256,90,0,1045487555,'
','ezxmltext',463,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,255,90,0,1045487555,'\n
\n','ezrichtext',462,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,256,90,0,1045487555,'\n
\n','ezrichtext',463,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,257,90,0,NULL,'','ezobjectrelation',464,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,258,90,0,NULL,'','ezkeyword',465,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,196,91,0,NULL,'It\'s helping me optimizing my business','ezstring',466,'eng-GB',2,0,'it\'s helping me optimizing my business',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,197,91,0,1045487555,'
Mauris hendrerit dignissim nisl, non sagittis velit aliquet ut. Ut egestas euismod tempus. Aliquam luctus ultrices interdum. Donec commodo, mi quis cursus feugiat, odio arcu tempor tortor, et sollicitudin velit nulla vitae mi. Cras feugiat interdum sem, quis vestibulum nisl interdum vel. Fusce eget nibh mauris. Nulla et purus sed urna pharetra egestas eu sed dui. Nulla sollicitudin eu eros sit amet porttitor.In lacus justo, cursus tincidunt quam eu, pretium pellentesque tellus. Nulla condimentum ultrices lorem, in ornare nulla imperdiet nec. Etiam facilisis vestibulum ligula condimentum interdum. Sed molestie nunc gravida nunc tristique gravida. Proin laoreet luctus enim nec interdum. Proin massa mi, rutrum et dui sit amet, consectetur elementum sem. Sed lorem massa, scelerisque in nunc eu, tempor auctor purus. Aliquam convallis enim non viverra molestie. Ut quis arcu fringilla, vehicula eros et, scelerisque turpis. Donec at ante eu mauris sagittis posuere. Suspendisse sit amet risus dolor. Donec posuere massa eget consequat malesuada. Nunc eget feugiat massa.
','ezxmltext',467,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,197,91,0,1045487555,'\n
Mauris hendrerit dignissim nisl, non sagittis velit aliquet ut. Ut egestas euismod tempus. Aliquam luctus ultrices interdum. Donec commodo, mi quis cursus feugiat, odio arcu tempor tortor, et sollicitudin velit nulla vitae mi. Cras feugiat interdum sem, quis vestibulum nisl interdum vel. Fusce eget nibh mauris. Nulla et purus sed urna pharetra egestas eu sed dui. Nulla sollicitudin eu eros sit amet porttitor.In lacus justo, cursus tincidunt quam eu, pretium pellentesque tellus. Nulla condimentum ultrices lorem, in ornare nulla imperdiet nec. Etiam facilisis vestibulum ligula condimentum interdum. Sed molestie nunc gravida nunc tristique gravida. Proin laoreet luctus enim nec interdum. Proin massa mi, rutrum et dui sit amet, consectetur elementum sem. Sed lorem massa, scelerisque in nunc eu, tempor auctor purus. Aliquam convallis enim non viverra molestie. Ut quis arcu fringilla, vehicula eros et, scelerisque turpis. Donec at ante eu mauris sagittis posuere. Suspendisse sit amet risus dolor. Donec posuere massa eget consequat malesuada. Nunc eget feugiat massa.
\n','ezrichtext',467,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,198,91,0,1358956920,'','ezdatetime',468,'eng-GB',2,1358956920,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,199,91,0,NULL,'','ezkeyword',469,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,200,92,0,NULL,'Discover eZ Publish 5','ezstring',470,'eng-GB',2,0,'discover ez publish 5',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,201,92,0,1045487555,'\n
Mont Castor Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German.
White Papers
Download our white paper if you want to quickly discover eZ Publish 5.This white paper contains
  • A detailed presentation of eZ Publish 5 for Marketers and Editors.
  • An introduction to the eZ Publish 5 technical architecture.
  • A clear summary of the value of using such a digital user experience management platform.
Don\'t hesitate, leave us your contact information and download this paper to get all the benefits of eZ Publish 5.
\n','ezxmltext',471,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,201,92,0,1045487555,'\n
medium05Mont Castor Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German.White PapersDownload our white paper if you want to quickly discover eZ Publish 5.This white paper containsA detailed presentation of eZ Publish 5 for Marketers and Editors.An introduction to the eZ Publish 5 technical architecture.A clear summary of the value of using such a digital user experience management platform.Don\'t hesitate, leave us your contact information and download this paper to get all the benefits of eZ Publish 5.
\n','ezrichtext',471,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,202,92,0,93,'681116da12d3fed558704658248067da','ezobjectrelation',472,'eng-GB',2,93,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,203,92,0,NULL,'','ezstring',473,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,204,92,0,NULL,'','ezstring',474,'eng-GB',2,0,'',1); @@ -1130,18 +1130,18 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,207,92,0,NULL,'','eztext',477, INSERT INTO `ezcontentobject_attribute` VALUES (0,208,92,0,NULL,'Get your copy!','ezstring',478,'eng-GB',2,0,'get your copy!',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,181,93,0,NULL,'Download your White Paper here','ezstring',479,'eng-GB',2,0,'download your white paper here',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,182,93,0,NULL,'','ezstring',480,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,183,93,0,1045487555,'
Thanks for your interest, please download your copy of the white paper below.
','ezxmltext',481,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,184,93,0,1045487555,'\n
Beyond Content Management, managing “Digital Experiences”, takes much more than technology; it is a strategy that focuses on the operations and processes of a business around the needs of the individual customer. Today leading organizations are increasingly focusing on building great experiences but realize it is a complex enterprise, involving strategy, integration of technology, orchestrating business models, brand management and CEO commitment. 
\n','ezxmltext',482,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,185,93,0,1045487555,'\n
\n','ezxmltext',483,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,183,93,0,1045487555,'\n
Thanks for your interest, please download your copy of the white paper below.
\n','ezrichtext',481,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,184,93,0,1045487555,'\n
Beyond Content Management, managing “Digital Experiences”, takes much more than technology; it is a strategy that focuses on the operations and processes of a business around the needs of the individual customer. Today leading organizations are increasingly focusing on building great experiences but realize it is a complex enterprise, involving strategy, integration of technology, orchestrating business models, brand management and CEO commitment. medium05
\n','ezrichtext',482,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,185,93,0,1045487555,'\n
\n','ezrichtext',483,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,186,93,0,NULL,'\n\n','ezimage',484,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,187,93,0,1045487555,'
','ezxmltext',485,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,187,93,0,1045487555,'\n
\n','ezrichtext',485,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,188,93,0,0,'','ezgmaplocation',486,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,189,93,0,NULL,'\n\n','ezauthor',487,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,190,93,0,0,'','ezdatetime',488,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,191,93,0,0,'','ezsrrating',489,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,192,93,0,NULL,'','ezkeyword',490,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,221,94,0,NULL,'Contact Us','ezstring',491,'eng-GB',2,0,'contact us',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,222,94,0,1045487555,'
Your opinion matter!
','ezxmltext',492,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,222,94,0,1045487555,'\n
Your opinion matter!
\n','ezrichtext',492,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,223,94,0,NULL,'','ezstring',493,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,224,94,0,NULL,'','ezstring',494,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,225,94,0,NULL,'','ezstring',495,'eng-GB',2,0,'',1); @@ -1150,76 +1150,76 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,227,94,0,NULL,'','eztext',497, INSERT INTO `ezcontentobject_attribute` VALUES (0,228,94,0,NULL,'','ezemail',498,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,229,94,0,NULL,'','ezemail',499,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,240,95,0,NULL,'eZ Publish 5 Platform Whitepaper','ezstring',500,'eng-GB',2,0,'ez publish 5 platform whitepaper',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,241,95,0,1045487555,'
Ability to create your own Digital Experience is the key to a successful digital business! This is what eZ can help you with.
','ezxmltext',501,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,241,95,0,1045487555,'\n
Ability to create your own Digital Experience is the key to a successful digital business! This is what eZ can help you with.
\n','ezrichtext',501,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,242,95,0,NULL,'','ezbinaryfile',502,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,243,95,0,0,'','ezsrrating',503,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,244,95,0,NULL,'','ezkeyword',504,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,96,0,NULL,'Screen Shot 2013-01-31 at 8.17.26 PM','ezstring',505,'eng-GB',2,0,'screen shot 2013-01-31 at 8.17.26 pm',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,96,0,1045487555,'
','ezxmltext',506,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,96,0,1045487555,'\n
\n','ezrichtext',506,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,96,0,NULL,'\n\n','ezimage',507,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,96,0,0,'','ezsrrating',508,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,96,0,NULL,'','ezkeyword',509,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,97,0,NULL,'funel','ezstring',510,'eng-GB',2,0,'funel',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,97,0,1045487555,'
','ezxmltext',511,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,97,0,1045487555,'\n
\n','ezrichtext',511,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,97,0,NULL,'\n\n','ezimage',512,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,97,0,0,'','ezsrrating',513,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,97,0,NULL,'','ezkeyword',514,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,98,0,NULL,'mount Matterhorn','ezstring',515,'eng-GB',2,0,'mount matterhorn',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,98,0,1045487555,'
The Matterhorn, also known as Cervino was the second mountain codename used, it was in spring 2011 for the eZ Publish 4.5 release. Photo: ccl Some rights reserved by Frank Peters
','ezxmltext',516,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,98,0,1045487555,'\n
The Matterhorn, also known as Cervino was the second mountain codename used, it was in spring 2011 for the eZ Publish 4.5 release. Photo: ccl Some rights reserved by Frank Peters
\n','ezrichtext',516,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,98,0,NULL,'\n\n','ezimage',517,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,98,0,0,'','ezsrrating',518,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,98,0,NULL,'','ezkeyword',519,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,99,0,NULL,'mount Annapurna','ezstring',520,'eng-GB',2,0,'mount annapurna',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,99,0,1045487555,'
eZ Publish 4.6 was named after the Annapurna mountain (Sanskrit: “full of food”). This was fall 2011. Photo: Some rights reserved by Sam@flickr
','ezxmltext',521,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,99,0,1045487555,'\n
eZ Publish 4.6 was named after the Annapurna mountain (Sanskrit: “full of food”). This was fall 2011. Photo: Some rights reserved by Sam@flickr
\n','ezrichtext',521,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,99,0,NULL,'\n\n','ezimage',522,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,99,0,0,'','ezsrrating',523,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,99,0,NULL,'','ezkeyword',524,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,100,0,NULL,'mount Stadda','ezstring',525,'eng-GB',2,0,'mount stadda',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,100,0,1045487555,'
Stadda is almost there, the \".1\" of the 5th generation: eZ Publish 5.1 and Norway\'s national mountain.
','ezxmltext',526,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,100,0,1045487555,'\n
Stadda is almost there, the \".1\" of the 5th generation: eZ Publish 5.1 and Norway\'s national mountain.
\n','ezrichtext',526,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,100,0,NULL,'\nQ0FTSU8=UVYtNTcwMCAgMQ==NzIvMQ==NzIvMQ==Mg==VmVyMS4wMCAgICAgICAgICAgICAgICA=MjAwMzowNzoxMSAyMDoxNTo0NQ==MQ==MjYyUHJpbnRJTQAwMjUwAAAABAABABYAFgACAQAAAAEABQAAAAEBAgAAAA==MTYwNC8xMDAwMDAwMjgvMTA=Mg==MDIyMA==MjAwMzowNzoxMSAyMDoxNTo0NQ==MjAwMzowNzoxMSAyMDoxNTo0NQ==AQIDAA==MTkyOTM3OTIvNDkxNTIwMA==MC82MjAvMTA=NQ==MA==MTY=MjA3NC8xMDA=AB0AAgADAAAAAQADAAAAAwADAAAAAQAHAAAABAADAAAAAQAEAAAABQADAAAAAQANAAAABgAEAAAAAQAATiAABwADAAAAAQABAAAACAADAAAAAQAAAAAACQADAAAAAQABAAAACgAEAAAAAQABAAAACwADAAAAAQAQAAAADAADAAAAAQAQAAAADQADAAAAAQARAAAADgADAAAAAQAAAAAADwADAAAAAQAAAAAAEAADAAAAAQAAAAAAEQAEAAAAAQB2AE0AEgADAAAAAQAQAAAAEwADAAAAAQAZAAAAFQACAAAAEgAABEIAFgADAAAAAQAFAAAAFwADAAAAAQABAAAAGAADAAAAAQABAAAAGQADAAAAAQABAAAAGgAHAAAAFAAABFQAHAADAAAAAQAGAAAAHQADAAAAAQADAAAAHgADAAAAAQABAAAAFAADAAAAAQAyAAAgIwADAAAAAQABAAAAAAAAMDIwOQAAMTAwOQAAMjMwMAAAAAABEAEBAAAAAAIAAAAAAAAAAAA=MDEwMA==MQ==MjU2MA==MTkyMA==MTEyOA==Aw==MA==Mg==MA==NjU1MzYvNjU1MzY=MTAwMg==MA==MA==Mg==MA==\n','ezimage',527,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,100,0,0,'','ezsrrating',528,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,100,0,NULL,'','ezkeyword',529,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,101,0,NULL,'mount Ventoux','ezstring',530,'eng-GB',2,0,'mount ventoux',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,101,0,1045487555,'
\"le Ventoux\", aka the Giant of Provence, was on eZ\'s list in spring 2014, a few weeks before le Tour de France. eZ Publish Platform 5.3 is here!
','ezxmltext',531,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,101,0,1045487555,'\n
\"le Ventoux\", aka the Giant of Provence, was on eZ\'s list in spring 2014, a few weeks before le Tour de France. eZ Publish Platform 5.3 is here!
\n','ezrichtext',531,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,101,0,NULL,'\n\n','ezimage',532,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,101,0,0,'','ezsrrating',533,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,101,0,NULL,'','ezkeyword',534,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,102,0,NULL,'mount Castor','ezstring',535,'eng-GB',2,0,'mount castor',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,102,0,1045487555,'
Castor is the eZ summit for November 2014. It is also the last of the 5.x series of eZ Publish Platform.
','ezxmltext',536,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,102,0,1045487555,'\n
Castor is the eZ summit for November 2014. It is also the last of the 5.x series of eZ Publish Platform.
\n','ezrichtext',536,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,102,0,NULL,'\nMQ==NzIwMDAwLzEwMDAwNzIwMDAwLzEwMDAwMg==QWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKQ==MjAxNDoxMToxMCAxODowMjo0NA==MTY4MQ==NzcwNTc4\n','ezimage',537,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,102,0,0,'','ezsrrating',538,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,102,0,NULL,'','ezkeyword',539,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,103,0,NULL,'mount Kilimanjaro','ezstring',540,'eng-GB',2,0,'mount kilimanjaro',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,103,0,1045487555,'
The first release of the new generation of eZ Publish, eZ Publish  5.0 platform, was Kilimanjaro. A giant for a giant step that happened in fall 2012. 
','ezxmltext',541,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,103,0,1045487555,'\n
The first release of the new generation of eZ Publish, eZ Publish  5.0 platform, was Kilimanjaro. A giant for a giant step that happened in fall 2012. 
\n','ezrichtext',541,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,103,0,NULL,'\n\n','ezimage',542,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,103,0,0,'','ezsrrating',543,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,103,0,NULL,'','ezkeyword',544,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,104,0,NULL,'mount Etna','ezstring',545,'eng-GB',2,0,'mount etna',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,104,0,1045487555,'
The Etna release was the last of the 4.x generation, released in spring 2012. Photo by Josep Renalias under the Creative Commons Attribution-Share Alike 2.5 Generic license.
','ezxmltext',546,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,104,0,1045487555,'\n
The Etna release was the last of the 4.x generation, released in spring 2012. Photo by Josep Renalias under the Creative Commons Attribution-Share Alike 2.5 Generic license.
\n','ezrichtext',546,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,104,0,NULL,'\nRlVKSUZJTE0=RmluZVBpeDY5MDBaT09NRGlnaXRhbCBDYW1lcmEgRmluZVBpeDY5MDBaT09NIFZlcjEuMDA=MjAwMzoxMjozMSAwOTo0NDo0Nw==Mg==ICAgIA==MTkwNjMwLzEwMA==Mg==MTAwMDIxMA==MjAwMzoxMjozMSAwOTo0NDo0Nw==MjAwMzoxMjozMSAwOTo0NDo0Nw==AQIDAA==MTUvMTA=ODgwLzEwMA==NTMzLzEwMA==OTE2LzEwMA==MC8zMzAwLzEwMA==NQ==MA==NDY4LzEwRlVKSUZJTE0MAAAAEQAAAAcABAAAADAxMzAAEAIACAAAAN4AAAABEAMAAQAAAAMAAAACEAMAAQAAAAAAAAADEAMAAQAAAAAAAAAQEAMAAQAAAAIAAAAREAoAAQAAAOYAAAAgEAMAAQAAAAAAAAAhEAMAAQAAAAAAAAAwEAMAAQAAAAAAAAAxEAMAAQAAAAAAAAAyEAMAAQAAAAEAAAAAEQMAAQAAAAAAAAAAEgMAAQAAAAAAAAAAEwMAAQAAAAAAAAABEwMAAQAAAAAAAAACEwMAAQAAAAAAAAAAAAAATk9STUFMIAAAAAAACgAAAA==MDEwMA==MQ==MjgzMg==MjEyOA==MzcwNC8xMzcwNC8xMw==Mg==Aw==AQ==\n','ezimage',547,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,104,0,0,'','ezsrrating',548,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,104,0,NULL,'','ezkeyword',549,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,105,0,NULL,'mount Fuji','ezstring',550,'eng-GB',2,0,'mount fuji',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,105,0,1045487555,'
Fuji is the first mountain eZ climbed, when releasing eZ Publish 4.4 in fall 2010.
','ezxmltext',551,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,105,0,1045487555,'\n
Fuji is the first mountain eZ climbed, when releasing eZ Publish 4.4 in fall 2010.
\n','ezrichtext',551,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,105,0,NULL,'\nMTYwNC8xMDAwMDAwMjgvMTA=Mg==MDIyMA==MjAwMzowNzoxMSAyMDoxNTo0NQ==MjAwMzowNzoxMSAyMDoxNTo0NQ==AQIDAA==MTkyOTM3OTIvNDkxNTIwMA==OTI3NjEyNC8xMDAwMDAwMjk3MDg1NC8xMDAwMDAwMC82MjAvMTA=NQ==MA==MTY=MjA3NC8xMDA=MDEwMA==MQ==ODUzNjQwODQwAw==MA==Mg==MA==NjU1MzYvNjU1MzY=MTAwMg==MA==MA==Mg==MA==\n','ezimage',552,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,105,0,0,'','ezsrrating',553,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,105,0,NULL,'','ezkeyword',554,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,245,106,0,NULL,'mount Aconcagua','ezstring',555,'eng-GB',2,0,'mount aconcagua',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,246,106,0,1045487555,'
eZ will climb Aconcagua in fall 2013, a very important release numbered eZ Publish Platform 5.2. Photo by Crystal Davis, World Resources Institute, 2007. Cc.
','ezxmltext',556,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,246,106,0,1045487555,'\n
eZ will climb Aconcagua in fall 2013, a very important release numbered eZ Publish Platform 5.2. Photo by Crystal Davis, World Resources Institute, 2007. Cc.
\n','ezrichtext',556,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,247,106,0,NULL,'\n\n','ezimage',557,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,248,106,0,0,'','ezsrrating',558,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,249,106,0,NULL,'','ezkeyword',559,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,283,107,0,NULL,'eZ Publish Optimize','ezstring',560,'eng-GB',2,0,'ez publish optimize',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,284,107,0,1045487555,'
','ezxmltext',561,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,284,107,0,1045487555,'\n
\n','ezrichtext',561,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,285,107,0,NULL,'','ezbinaryfile',562,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,286,107,0,0,'','ezsrrating',563,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,293,108,0,NULL,'eZ Mountains','ezstring',564,'eng-GB',2,0,'ez mountains',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,294,108,0,NULL,'','ezstring',565,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,295,108,0,1045487555,'
The mountains that eZ climbed.
','ezxmltext',566,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,295,108,0,1045487555,'\n
The mountains that eZ climbed.
\n','ezrichtext',566,'eng-GB',2,0,'',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,109,0,NULL,'Mount Fuji','ezstring',567,'eng-GB',2,0,'mount fuji',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,109,0,NULL,'Mount Fuji','ezstring',567,'eng-GB',2,0,'mount fuji',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,109,0,1045487555,'
Mount Fuji, located on Honshu Island, is the highest mountain in Japan at 3,776.24 m (12,389 ft). An active stratovolcano that last erupted in 1707–08, Mount Fuji lies about 100 kilometres (60 mi) south-west of Tokyo, and can be seen from there on a clear day. Mount Fuji\'s exceptionally symmetrical cone, which is snow-capped several months a year, is a well-known symbol of Japan and it is frequently depicted in art and photographs, as well as visited by sightseers and climbers. It is one of Japan\'s \"Three Holy Mountains\" along with Mount Tate and Mount Haku; it is a Special Place of Scenic Beauty, a Historic Site, and was added to the World Heritage List as a Cultural Site on June 22nd, 2013.This article uses material from the Wikipedia article Mount Fuji, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',568,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,109,0,1045487555,'\n
Mount Fuji, located on Honshu Island, is the highest mountain in Japan at 3,776.24 m (12,389 ft). An active stratovolcano that last erupted in 1707–08, Mount Fuji lies about 100 kilometres (60 mi) south-west of Tokyo, and can be seen from there on a clear day. Mount Fuji\'s exceptionally symmetrical cone, which is snow-capped several months a year, is a well-known symbol of Japan and it is frequently depicted in art and photographs, as well as visited by sightseers and climbers. It is one of Japan\'s \"Three Holy Mountains\" along with Mount Tate and Mount Haku; it is a Special Place of Scenic Beauty, a Historic Site, and was added to the World Heritage List as a Cultural Site on June 22nd, 2013.This article uses material from the Wikipedia article Mount Fuji, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',568,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,109,0,1045487555,'\n
Mount Fuji, located on Honshu Island, is the highest mountain in Japan at 3,776.24 m (12,389 ft). An active stratovolcano that last erupted in 1707–08, Mount Fuji lies about 100 kilometres (60 mi) south-west of Tokyo, and can be seen from there on a clear day. Mount Fuji\'s exceptionally symmetrical cone, which is snow-capped several months a year, is a well-known symbol of Japan and it is frequently depicted in art and photographs, as well as visited by sightseers and climbers. It is one of Japan\'s \"Three Holy Mountains\" along with Mount Tate and Mount Haku; it is a Special Place of Scenic Beauty, a Historic Site, and was added to the World Heritage List as a Cultural Site on June 22nd, 2013.This article uses material from the Wikipedia article Mount Fuji, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',568,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,109,0,1045487555,'\n
Mount Fuji, located on Honshu Island, is the highest mountain in Japan at 3,776.24 m (12,389 ft). An active stratovolcano that last erupted in 1707–08, Mount Fuji lies about 100 kilometres (60 mi) south-west of Tokyo, and can be seen from there on a clear day. Mount Fuji\'s exceptionally symmetrical cone, which is snow-capped several months a year, is a well-known symbol of Japan and it is frequently depicted in art and photographs, as well as visited by sightseers and climbers. It is one of Japan\'s \"Three Holy Mountains\" along with Mount Tate and Mount Haku; it is a Special Place of Scenic Beauty, a Historic Site, and was added to the World Heritage List as a Cultural Site on June 22nd, 2013.This article uses material from the Wikipedia article Mount Fuji, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',568,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,109,0,1,'','ezgmaplocation',570,'eng-GB',2,0,'mount fuji',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,109,0,1,'','ezgmaplocation',570,'eng-GB',2,0,'mount fuji',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,109,0,NULL,'','ezkeyword',571,'eng-GB',2,0,'',1); @@ -1228,8 +1228,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,109,0,0,'','ezsrrating',57 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,109,0,NULL,'','ezsrrating',572,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,110,0,NULL,'Mount Matterhorn','ezstring',573,'eng-GB',2,0,'mount matterhorn',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,110,0,NULL,'Mount Matterhorn','ezstring',573,'eng-GB',2,0,'mount matterhorn',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,110,0,1045487555,'
The Matterhorn (German), Monte Cervino (Italian) or Mont Cervin (French), is a mountain in the Pennine Alps on the border between Switzerland and Italy. Its summit is 4,478 metres (14,692 ft) high, making it one of the highest peaks in the Alps. The four steep faces, rising above the surrounding glaciers, face the four compass points. The mountain overlooks the town of Zermatt in the canton of Valais to the north-east and Breuil-Cervinia in the Aosta Valley to the south. Theodul Pass, located at the eastern base of the peak, is the lowest passage between its north and south side.This article uses material from the Wikipedia article Matterhorn, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',574,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,110,0,1045487555,'\n
The Matterhorn (German), Monte Cervino (Italian) or Mont Cervin (French), is a mountain in the Pennine Alps on the border between Switzerland and Italy. Its summit is 4,478 metres (14,692 ft) high, making it one of the highest peaks in the Alps. The four steep faces, rising above the surrounding glaciers, face the four compass points. The mountain overlooks the town of Zermatt in the canton of Valais to the north-east and Breuil-Cervinia in the Aosta Valley to the south. Theodul Pass, located at the eastern base of the peak, is the lowest passage between its north and south side.This article uses material from the Wikipedia article Matterhorn, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',574,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,110,0,1045487555,'\n
The Matterhorn (German), Monte Cervino (Italian) or Mont Cervin (French), is a mountain in the Pennine Alps on the border between Switzerland and Italy. Its summit is 4,478 metres (14,692 ft) high, making it one of the highest peaks in the Alps. The four steep faces, rising above the surrounding glaciers, face the four compass points. The mountain overlooks the town of Zermatt in the canton of Valais to the north-east and Breuil-Cervinia in the Aosta Valley to the south. Theodul Pass, located at the eastern base of the peak, is the lowest passage between its north and south side.This article uses material from the Wikipedia article Matterhorn, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',574,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,110,0,1045487555,'\n
The Matterhorn (German), Monte Cervino (Italian) or Mont Cervin (French), is a mountain in the Pennine Alps on the border between Switzerland and Italy. Its summit is 4,478 metres (14,692 ft) high, making it one of the highest peaks in the Alps. The four steep faces, rising above the surrounding glaciers, face the four compass points. The mountain overlooks the town of Zermatt in the canton of Valais to the north-east and Breuil-Cervinia in the Aosta Valley to the south. Theodul Pass, located at the eastern base of the peak, is the lowest passage between its north and south side.This article uses material from the Wikipedia article Matterhorn, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',574,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,110,0,1,'','ezgmaplocation',576,'eng-GB',2,0,' Mount Matterhorn',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,110,0,1,'','ezgmaplocation',576,'eng-GB',2,0,' Mount Matterhorn',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,110,0,NULL,'','ezkeyword',577,'eng-GB',2,0,'',1); @@ -1238,8 +1238,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,110,0,0,'','ezsrrating',57 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,110,0,NULL,'','ezsrrating',578,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,111,0,NULL,'Mount Annapurna','ezstring',579,'eng-GB',2,0,'mount annapurna',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,111,0,NULL,'Mount Annapurna','ezstring',579,'eng-GB',2,0,'mount annapurna',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,111,0,1045487555,'
Annapurna (Sanskrit, Nepali, Nepal Bhasa: अन्नपुर्ण) is a section of the Himalayas in north-central Nepal that includes 8,091 m (26,545 ft) Annapurna I, thirteen additional peaks over 7,000 m (22,970 ft) and 16 more over 6,000 m (19,690 ft). This section is a 55 km-long (34 mi-long) massif bounded by the Kali Gandaki Gorge on the west, the Marshyangdi River on the north and east, and Pokhara Valley on the south. Annapurna I is tenth among Earth\'s fourteen eight-thousanders. 8167 metre Dhaulagiri I rises 34 km to the west across the Kali Gandaki Gorge, considered Earth\'s deepest canyon.This article uses material from the Wikipedia article Annapurna, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',580,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,111,0,1045487555,'\n
Annapurna (Sanskrit, Nepali, Nepal Bhasa: अन्नपुर्ण) is a section of the Himalayas in north-central Nepal that includes 8,091 m (26,545 ft) Annapurna I, thirteen additional peaks over 7,000 m (22,970 ft) and 16 more over 6,000 m (19,690 ft). This section is a 55 km-long (34 mi-long) massif bounded by the Kali Gandaki Gorge on the west, the Marshyangdi River on the north and east, and Pokhara Valley on the south. Annapurna I is tenth among Earth\'s fourteen eight-thousanders. 8167 metre Dhaulagiri I rises 34 km to the west across the Kali Gandaki Gorge, considered Earth\'s deepest canyon.This article uses material from the Wikipedia article Annapurna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',580,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,111,0,1045487555,'\n
Annapurna (Sanskrit, Nepali, Nepal Bhasa: अन्नपुर्ण) is a section of the Himalayas in north-central Nepal that includes 8,091 m (26,545 ft) Annapurna I, thirteen additional peaks over 7,000 m (22,970 ft) and 16 more over 6,000 m (19,690 ft). This section is a 55 km-long (34 mi-long) massif bounded by the Kali Gandaki Gorge on the west, the Marshyangdi River on the north and east, and Pokhara Valley on the south. Annapurna I is tenth among Earth\'s fourteen eight-thousanders. 8167 metre Dhaulagiri I rises 34 km to the west across the Kali Gandaki Gorge, considered Earth\'s deepest canyon.This article uses material from the Wikipedia article Annapurna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',580,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,111,0,1045487555,'\n
Annapurna (Sanskrit, Nepali, Nepal Bhasa: अन्नपुर्ण) is a section of the Himalayas in north-central Nepal that includes 8,091 m (26,545 ft) Annapurna I, thirteen additional peaks over 7,000 m (22,970 ft) and 16 more over 6,000 m (19,690 ft). This section is a 55 km-long (34 mi-long) massif bounded by the Kali Gandaki Gorge on the west, the Marshyangdi River on the north and east, and Pokhara Valley on the south. Annapurna I is tenth among Earth\'s fourteen eight-thousanders. 8167 metre Dhaulagiri I rises 34 km to the west across the Kali Gandaki Gorge, considered Earth\'s deepest canyon.This article uses material from the Wikipedia article Annapurna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',580,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,111,0,1,'','ezgmaplocation',582,'eng-GB',2,0,'mount annapurna',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,111,0,1,'','ezgmaplocation',582,'eng-GB',2,0,'mount annapurna',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,111,0,NULL,'','ezkeyword',583,'eng-GB',2,0,'',1); @@ -1248,8 +1248,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,111,0,0,'','ezsrrating',58 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,111,0,NULL,'','ezsrrating',584,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,112,0,NULL,'Mount Etna','ezstring',585,'eng-GB',2,0,'mount etna',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,112,0,NULL,'Mount Etna','ezstring',585,'eng-GB',2,0,'mount etna',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,112,0,1045487555,'
Mount Etna (Latin: Aetna, Sicilian: Mungibeddu or \'a Muntagna) is an active stratovolcano on the east coast of Sicily, Italy, close to Messina and Catania. It lies above the convergent plate margin between the African Plate and the Eurasian Plate. It is the tallest active volcano on the European continent, currently 3,329 m (10,922 ft) high, though this varies with summit eruptions. It is the highest mountain in Italy south of the Alps. Etna covers an area of 1,190 km2 (459 sq mi) with a basal circumference of 140 km. This makes it by far the largest of the three active volcanoes in Italy, being about two and a half times the height of the next largest, Mount Vesuvius. Only Mount Teide in Tenerife surpasses it in the whole of the European–North-African region. In Greek Mythology, the deadly monster Typhon was trapped under this mountain by Zeus, the god of the sky and thunder and king of gods, and the forges of Hephaestus were said to also be located underneath it.This article uses material from the Wikipedia article Mount Etna, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',586,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,112,0,1045487555,'\n
Mount Etna (Latin: Aetna, Sicilian: Mungibeddu or \'a Muntagna) is an active stratovolcano on the east coast of Sicily, Italy, close to Messina and Catania. It lies above the convergent plate margin between the African Plate and the Eurasian Plate. It is the tallest active volcano on the European continent, currently 3,329 m (10,922 ft) high, though this varies with summit eruptions. It is the highest mountain in Italy south of the Alps. Etna covers an area of 1,190 km2 (459 sq mi) with a basal circumference of 140 km. This makes it by far the largest of the three active volcanoes in Italy, being about two and a half times the height of the next largest, Mount Vesuvius. Only Mount Teide in Tenerife surpasses it in the whole of the European–North-African region. In Greek Mythology, the deadly monster Typhon was trapped under this mountain by Zeus, the god of the sky and thunder and king of gods, and the forges of Hephaestus were said to also be located underneath it.This article uses material from the Wikipedia article Mount Etna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',586,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,112,0,1045487555,'\n
Mount Etna (Latin: Aetna, Sicilian: Mungibeddu or \'a Muntagna) is an active stratovolcano on the east coast of Sicily, Italy, close to Messina and Catania. It lies above the convergent plate margin between the African Plate and the Eurasian Plate. It is the tallest active volcano on the European continent, currently 3,329 m (10,922 ft) high, though this varies with summit eruptions. It is the highest mountain in Italy south of the Alps. Etna covers an area of 1,190 km2 (459 sq mi) with a basal circumference of 140 km. This makes it by far the largest of the three active volcanoes in Italy, being about two and a half times the height of the next largest, Mount Vesuvius. Only Mount Teide in Tenerife surpasses it in the whole of the European–North-African region. In Greek Mythology, the deadly monster Typhon was trapped under this mountain by Zeus, the god of the sky and thunder and king of gods, and the forges of Hephaestus were said to also be located underneath it.This article uses material from the Wikipedia article Mount Etna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',586,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,112,0,1045487555,'\n
Mount Etna (Latin: Aetna, Sicilian: Mungibeddu or \'a Muntagna) is an active stratovolcano on the east coast of Sicily, Italy, close to Messina and Catania. It lies above the convergent plate margin between the African Plate and the Eurasian Plate. It is the tallest active volcano on the European continent, currently 3,329 m (10,922 ft) high, though this varies with summit eruptions. It is the highest mountain in Italy south of the Alps. Etna covers an area of 1,190 km2 (459 sq mi) with a basal circumference of 140 km. This makes it by far the largest of the three active volcanoes in Italy, being about two and a half times the height of the next largest, Mount Vesuvius. Only Mount Teide in Tenerife surpasses it in the whole of the European–North-African region. In Greek Mythology, the deadly monster Typhon was trapped under this mountain by Zeus, the god of the sky and thunder and king of gods, and the forges of Hephaestus were said to also be located underneath it.This article uses material from the Wikipedia article Mount Etna, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',586,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,112,0,1,'','ezgmaplocation',588,'eng-GB',2,0,'mount etna',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,112,0,1,'','ezgmaplocation',588,'eng-GB',2,0,'mount etna',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,112,0,NULL,'','ezkeyword',589,'eng-GB',2,0,'',1); @@ -1258,8 +1258,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,112,0,0,'','ezsrrating',59 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,112,0,NULL,'','ezsrrating',590,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,113,0,NULL,'Mount Kilimanjaro','ezstring',591,'eng-GB',2,0,'mount kilimanjaro',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,113,0,NULL,'Mount Kilimanjaro','ezstring',591,'eng-GB',2,0,'mount kilimanjaro',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,113,0,1045487555,'
Mount Kilimanjaro, with its three volcanic cones, KiboMawenzi, and Shira, is a dormant volcanic mountain in Tanzania. It is the highest mountain in Africa and the highest free-standing mountain in the world at 5,895 metres or 19,341 feet abovesea level (the Uhuru Peak/Kibo Peak).This article uses material from the Wikipedia article Mount Kilimanjaro, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',592,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,113,0,1045487555,'\n
Mount Kilimanjaro, with its three volcanic cones, KiboMawenzi, and Shira, is a dormant volcanic mountain in Tanzania. It is the highest mountain in Africa and the highest free-standing mountain in the world at 5,895 metres or 19,341 feet abovesea level (the Uhuru Peak/Kibo Peak).This article uses material from the Wikipedia article Mount Kilimanjaro, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',592,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,113,0,1045487555,'\n
Mount Kilimanjaro, with its three volcanic cones, KiboMawenzi, and Shira, is a dormant volcanic mountain in Tanzania. It is the highest mountain in Africa and the highest free-standing mountain in the world at 5,895 metres or 19,341 feet abovesea level (the Uhuru Peak/Kibo Peak).This article uses material from the Wikipedia article Mount Kilimanjaro, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',592,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,113,0,1045487555,'\n
Mount Kilimanjaro, with its three volcanic cones, KiboMawenzi, and Shira, is a dormant volcanic mountain in Tanzania. It is the highest mountain in Africa and the highest free-standing mountain in the world at 5,895 metres or 19,341 feet abovesea level (the Uhuru Peak/Kibo Peak).This article uses material from the Wikipedia article Mount Kilimanjaro, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',592,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,113,0,1,'','ezgmaplocation',594,'eng-GB',2,0,'mount kilimanjaro',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,113,0,1,'','ezgmaplocation',594,'eng-GB',2,0,'mount kilimanjaro',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,113,0,NULL,'','ezkeyword',595,'eng-GB',2,0,'',1); @@ -1268,8 +1268,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,113,0,0,'','ezsrrating',59 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,113,0,NULL,'','ezsrrating',596,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,114,0,NULL,'Mount Stadda','ezstring',597,'eng-GB',2,0,'mount stadda',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,114,0,NULL,'Mount Stadda','ezstring',597,'eng-GB',2,0,'mount stadda',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,114,0,1045487555,'
Stadda (in Lule Sami: Stádda) is a mountain in the municipality of Tysfjord in Nordland county, Norway. It is located about 15 kilometres (9 mi) northeast of the village of Kjøpsvik. The mountain has very smooth sides reaching all the way to the fjord. Stetind has an obelisk-shape which gives it a very distinct look. In 2002 it was voted to be the \"National Mountain\" of Norway by listeners of NRK.This article uses material from the Wikipedia article Mount Stetind, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',598,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,114,0,1045487555,'\n
Stadda (in Lule Sami: Stádda) is a mountain in the municipality of Tysfjord in Nordland county, Norway. It is located about 15 kilometres (9 mi) northeast of the village of Kjøpsvik. The mountain has very smooth sides reaching all the way to the fjord. Stetind has an obelisk-shape which gives it a very distinct look. In 2002 it was voted to be the \"National Mountain\" of Norway by listeners of NRK.This article uses material from the Wikipedia article Mount Stetind, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',598,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,114,0,1045487555,'\n
Stadda (in Lule Sami: Stádda) is a mountain in the municipality of Tysfjord in Nordland county, Norway. It is located about 15 kilometres (9 mi) northeast of the village of Kjøpsvik. The mountain has very smooth sides reaching all the way to the fjord. Stetind has an obelisk-shape which gives it a very distinct look. In 2002 it was voted to be the \"National Mountain\" of Norway by listeners of NRK.This article uses material from the Wikipedia article Mount Stetind, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',598,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,114,0,1045487555,'\n
Stadda (in Lule Sami: Stádda) is a mountain in the municipality of Tysfjord in Nordland county, Norway. It is located about 15 kilometres (9 mi) northeast of the village of Kjøpsvik. The mountain has very smooth sides reaching all the way to the fjord. Stetind has an obelisk-shape which gives it a very distinct look. In 2002 it was voted to be the \"National Mountain\" of Norway by listeners of NRK.This article uses material from the Wikipedia article Mount Stetind, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',598,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,114,0,1,'','ezgmaplocation',600,'eng-GB',2,0,'mount stetind',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,114,0,1,'','ezgmaplocation',600,'eng-GB',2,0,'mount stetind',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,114,0,NULL,'','ezkeyword',601,'eng-GB',2,0,'',1); @@ -1278,8 +1278,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,114,0,0,'','ezsrrating',60 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,114,0,NULL,'','ezsrrating',602,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,115,0,NULL,'Mount Aconcagua','ezstring',603,'eng-GB',2,0,'mount aconcagua',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,115,0,NULL,'Mount Aconcagua','ezstring',603,'eng-GB',2,0,'mount aconcagua',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,115,0,1045487555,'
Aconcagua (Spanish pronunciation: [akoŋˈkaɣwa]) is the highest mountain in the Western and Southern Hemispheres at 6,960.8 metres (22,837 ft). It is located in the Andes mountain range, in the province of Mendoza, Argentina, and lies 112 kilometres (70 mi) northwest of its capital, the city of Mendoza. The summit is also located about 5 kilometres from San Juan Province and 15 kilometres from the international border with Chile. Aconcagua is the highest peak in both the Western and Southern Hemispheres. It is one of the Seven Summits.This article uses material from the Wikipedia article Aconcagua, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',604,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,115,0,1045487555,'\n
Aconcagua (Spanish pronunciation: [akoŋˈkaɣwa]) is the highest mountain in the Western and Southern Hemispheres at 6,960.8 metres (22,837 ft). It is located in the Andes mountain range, in the province of Mendoza, Argentina, and lies 112 kilometres (70 mi) northwest of its capital, the city of Mendoza. The summit is also located about 5 kilometres from San Juan Province and 15 kilometres from the international border with Chile. Aconcagua is the highest peak in both the Western and Southern Hemispheres. It is one of the Seven Summits.This article uses material from the Wikipedia article Aconcagua, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',604,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,115,0,1045487555,'\n
Aconcagua (Spanish pronunciation: [akoŋˈkaɣwa]) is the highest mountain in the Western and Southern Hemispheres at 6,960.8 metres (22,837 ft). It is located in the Andes mountain range, in the province of Mendoza, Argentina, and lies 112 kilometres (70 mi) northwest of its capital, the city of Mendoza. The summit is also located about 5 kilometres from San Juan Province and 15 kilometres from the international border with Chile. Aconcagua is the highest peak in both the Western and Southern Hemispheres. It is one of the Seven Summits.This article uses material from the Wikipedia article Aconcagua, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',604,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,115,0,1045487555,'\n
Aconcagua (Spanish pronunciation: [akoŋˈkaɣwa]) is the highest mountain in the Western and Southern Hemispheres at 6,960.8 metres (22,837 ft). It is located in the Andes mountain range, in the province of Mendoza, Argentina, and lies 112 kilometres (70 mi) northwest of its capital, the city of Mendoza. The summit is also located about 5 kilometres from San Juan Province and 15 kilometres from the international border with Chile. Aconcagua is the highest peak in both the Western and Southern Hemispheres. It is one of the Seven Summits.This article uses material from the Wikipedia article Aconcagua, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',604,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,115,0,1,'','ezgmaplocation',606,'eng-GB',2,0,'aconcagua',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,115,0,1,'','ezgmaplocation',606,'eng-GB',2,0,'aconcagua',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,115,0,NULL,'','ezkeyword',607,'eng-GB',2,0,'',1); @@ -1288,8 +1288,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,115,0,0,'','ezsrrating',60 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,115,0,NULL,'','ezsrrating',608,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,116,0,NULL,'Mount Ventoux','ezstring',609,'eng-GB',2,0,'mount ventoux',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,116,0,NULL,'Mount Ventoux','ezstring',609,'eng-GB',2,0,'mount ventoux',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,116,0,1045487555,'
Mont Ventoux (Ventor in Provençal) is a mountain in the Provence region of southern France, located some 20 km northeast of Carpentras, Vaucluse. On the north side, the mountain borders the Drôme département. It is the largest mountain in the region and has been nicknamed the \"Beast of Provence\", the \"Giant of Provence\", or \"The Bald Mountain\". It has gained fame through its use in the Tour de France cycling race.This article uses material from the Wikipedia article Mount Ventoux, which is released under the Creative Commons Attribution-ShareAlike License.
','ezxmltext',610,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,116,0,1045487555,'\n
Mont Ventoux (Ventor in Provençal) is a mountain in the Provence region of southern France, located some 20 km northeast of Carpentras, Vaucluse. On the north side, the mountain borders the Drôme département. It is the largest mountain in the region and has been nicknamed the \"Beast of Provence\", the \"Giant of Provence\", or \"The Bald Mountain\". It has gained fame through its use in the Tour de France cycling race.This article uses material from the Wikipedia article Mount Ventoux, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezxmltext',610,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,116,0,1045487555,'\n
Mont Ventoux (Ventor in Provençal) is a mountain in the Provence region of southern France, located some 20 km northeast of Carpentras, Vaucluse. On the north side, the mountain borders the Drôme département. It is the largest mountain in the region and has been nicknamed the \"Beast of Provence\", the \"Giant of Provence\", or \"The Bald Mountain\". It has gained fame through its use in the Tour de France cycling race.This article uses material from the Wikipedia article Mount Ventoux, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',610,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,116,0,1045487555,'\n
Mont Ventoux (Ventor in Provençal) is a mountain in the Provence region of southern France, located some 20 km northeast of Carpentras, Vaucluse. On the north side, the mountain borders the Drôme département. It is the largest mountain in the region and has been nicknamed the \"Beast of Provence\", the \"Giant of Provence\", or \"The Bald Mountain\". It has gained fame through its use in the Tour de France cycling race.This article uses material from the Wikipedia article Mount Ventoux, which is released under the Creative Commons Attribution-ShareAlike License.
\n','ezrichtext',610,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,116,0,1,'','ezgmaplocation',612,'eng-GB',2,0,'mont ventoux',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,116,0,1,'','ezgmaplocation',612,'eng-GB',2,0,'mont ventoux',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,116,0,NULL,'','ezkeyword',613,'eng-GB',2,0,'',1); @@ -1298,8 +1298,8 @@ INSERT INTO `ezcontentobject_attribute` VALUES (0,292,116,0,0,'','ezsrrating',61 INSERT INTO `ezcontentobject_attribute` VALUES (0,292,116,0,NULL,'','ezsrrating',614,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,117,0,NULL,'Mount Castor','ezstring',615,'eng-GB',2,0,'mount castor',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,287,117,0,NULL,'Mount Castor','ezstring',615,'eng-GB',2,0,'mount castor',2); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,117,0,1045487555,'
Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German. Ascents are usually made from the alpine hut Capanna Quintino Sella on the Italian side, by means of the Felikjoch and the long and narrow southeast ridge. From the Swiss side, ascents start from Klein Matterhorn and go by way of the Italian Mezzalama glacier and the mountain\'s west flank. The first ascent was made on August 23, 1861.This article uses material from the Wikipedia article Mount Castor, which is released under the Creative Commons Attribution-ShareAlike License. Photo: \"Castore per la cresta sudorientale\" by Franco56 - fotografia personale. Licensed under Creative Commons Attribution-Share Alike 3.0 via Wikimedia Commons.
','ezxmltext',616,'eng-GB',2,0,'',1); -INSERT INTO `ezcontentobject_attribute` VALUES (0,288,117,0,1045487555,'\n
Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German. Ascents are usually made from the alpine hut Capanna Quintino Sella on the Italian side, by means of the Felikjoch and the long and narrow southeast ridge. From the Swiss side, ascents start from Klein Matterhorn and go by way of the Italian Mezzalama glacier and the mountain\'s west flank. The first ascent was made on August 23, 1861.This article uses material from the Wikipedia article Mount Castor, which is released under the Creative Commons Attribution-ShareAlike License. Photo: \"Castore per la cresta sudorientale\" by Franco56 - fotografia personale. Licensed under Creative Commons Attribution-Share Alike 3.0 via Wikimedia Commons.
\n','ezxmltext',616,'eng-GB',2,0,'',2); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,117,0,1045487555,'\n
Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German. Ascents are usually made from the alpine hut Capanna Quintino Sella on the Italian side, by means of the Felikjoch and the long and narrow southeast ridge. From the Swiss side, ascents start from Klein Matterhorn and go by way of the Italian Mezzalama glacier and the mountain\'s west flank. The first ascent was made on August 23, 1861.This article uses material from the Wikipedia article Mount Castor, which is released under the Creative Commons Attribution-ShareAlike License. Photo: \"Castore per la cresta sudorientale\" by Franco56 - fotografia personale. Licensed under Creative Commons Attribution-Share Alike 3.0 via Wikimedia Commons.
\n','ezrichtext',616,'eng-GB',2,0,'',1); +INSERT INTO `ezcontentobject_attribute` VALUES (0,288,117,0,1045487555,'\n
Castor (Italian: Castore) is a mountain in the Pennine Alps on the border between Valais, Switzerland and the Aosta Valley in Italy. It is the higher of a pair of twin peaks (Zwillinge), the other being Pollux, named after the Gemini twins of Roman mythology. Castor\'s peak is at an elevation of 4,228 m (13,871 ft), and it lies between Breithorn and Monte Rosa. It is separated from Pollux by a pass at 3,845 m (12,615 ft), named Passo di Verra in Italian and Zwillingsjoch in German. Ascents are usually made from the alpine hut Capanna Quintino Sella on the Italian side, by means of the Felikjoch and the long and narrow southeast ridge. From the Swiss side, ascents start from Klein Matterhorn and go by way of the Italian Mezzalama glacier and the mountain\'s west flank. The first ascent was made on August 23, 1861.This article uses material from the Wikipedia article Mount Castor, which is released under the Creative Commons Attribution-ShareAlike License. Photo: \"Castore per la cresta sudorientale\" by Franco56 - fotografia personale. Licensed under Creative Commons Attribution-Share Alike 3.0 via Wikimedia Commons.
\n','ezrichtext',616,'eng-GB',2,0,'',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,117,0,1,'','ezgmaplocation',618,'eng-GB',2,0,'Castor, Switzerland',1); INSERT INTO `ezcontentobject_attribute` VALUES (0,290,117,0,1,'','ezgmaplocation',618,'eng-GB',2,0,'Castor, Switzerland',2); INSERT INTO `ezcontentobject_attribute` VALUES (0,291,117,0,NULL,'','ezkeyword',619,'eng-GB',2,0,'',1); @@ -10847,4 +10847,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2015-08-26 23:05:49 +-- Dump completed on 2015-10-15 15:22:43