Пример #1
0
 /**
  * Change the state in core_content if the state in a table is changed
  *
  * @param   string   $context  The context for the content passed to the plugin.
  * @param   array    $pks      A list of primary key ids of the content that has changed state.
  * @param   integer  $value    The value of the state that the content has been changed to.
  *
  * @return  boolean
  *
  * @since   3.1
  */
 public function onContentChangeState($context, $pks, $value)
 {
     $db = JFactory::getDbo();
     $query = $db->getQuery(true)->select($db->quoteName('core_content_id'))->from($db->quoteName('#__ucm_content'))->where($db->quoteName('core_type_alias') . ' = ' . $db->quote($context))->where($db->quoteName('core_content_item_id') . ' IN (' . ($pksImploded = implode(',', $pks) . ')'));
     $db->setQuery($query);
     $ccIds = $db->loadColumn();
     $cctable = new JTableCorecontent($db);
     $cctable->publish($ccIds, $value);
     return true;
 }
Пример #2
0
 /**
  * Tests JTableCorecontent::publish
  *
  * @return  void
  *
  * @since   3.1
  */
 public function testPublishWithSingleKey()
 {
     $this->assertTrue($this->object->publish(array('32'), '1'));
     $this->object->load('32');
     $this->assertEquals('1', $this->object->core_state);
 }