--- /dev/null
+The follow individuals, companies, or entities have contributed significant
+code to the Elgg project and share the copyright.
+
+Curverider Ltd
+Cash Costello
+The MITRE Corportation
+Evan Winslow
+
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$featured_urls = get_input('featured_urls', array());
* Elgg add comment action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Make sure we're logged in; forward to the front page if not
* Elgg delete comment action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Ensure we're logged in
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Ensure we are logged in
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
//must be logged in
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$collection_id = get_input('collection_id');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Ensure we are logged in
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Safety
* Elgg add like action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
gatekeeper();
* Elgg delete like action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Ensure we're logged in
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Log out
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Method
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$params = get_input('params');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$params = get_input('params');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
admin_gatekeeper(); // Only admins can add a user
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
global $CONFIG;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$guid = get_input('user');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$owner = get_input('owner');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$guid = get_input('guid');
* there are many occasions where you may want access to file data on datastores using the ElggFile interface
* but do not want to create an Entity reference to it in the system (temporary files for example).
*
- * @author Curverider Ltd
*/
class ElggFile extends ElggObject {
/** Filestore */
* ElggFileCache
* Store cached data in a file store.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage API
*/
/**
* @class ElggFilestore
* This class defines the interface for all elgg data repositories.
- * @author Curverider Ltd
*/
abstract class ElggFilestore {
/**
/**
* @class ElggGroup Class representing a container for other elgg entities.
- * @author Curverider Ltd
*/
class ElggGroup extends ElggEntity
implements Friendable {
* ElggHMACCache
* Store cached data in a temporary database, only used by the HMAC stuff.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage API
*/
<?php
/**
* Memcache wrapper class.
- * @author Curverider Ltd <info@elgg.com>
*/
class ElggMemcache extends ElggSharedMemoryCache {
/**
* ElggMetadata
* This class describes metadata that can be attached to ElggEntities.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Core
*/
* Dummy cache which stores values in a static array. Using this makes future replacements to other caching back
* ends (eg memcache) much easier.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage API
*/
* ErrorResult
* The error result class.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Core
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
*/
interface Exportable {
/**
/**
* GenericResult Result superclass.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Core
*/
* IOException
* An IO Exception, throw when an IO Exception occurs. Subclass for specific IO Exceptions.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
<?php
/**
* Define an interface for all ODD importable objects.
- * @author Curverider Ltd
*/
interface Importable {
/**
/**
* @class InsertQueryTypeQueryComponent
* An insert query.
- * @author Curverider Ltd
* @see Query
*/
class InsertQueryTypeQueryComponent extends QueryTypeQueryComponent
* InstallationException
* Thrown when there is a major problem with the installation.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
* InvalidClassException
* An invalid class Exception, throw when a class is invalid.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
* InvalidParameterException
* A parameter is invalid.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
/**
* @class JoinQueryComponent Join query.
* Represents a join query.
- * @author Curverider Ltd
* @see Query
*/
class JoinQueryComponent extends QueryComponent
/**
* @class LimitOffsetQueryComponent
* Limit and offset clauses of a query.
- * @author Curverider Ltd
* @see Query
*/
class LimitOffsetQueryComponent extends QueryComponent
*
* To have events involving your object to be logged simply implement this interface.
*
- * @author Curverider Ltd
*/
interface Loggable {
/**
* Thrown when a method or function has not been implemented, primarily used in development... you should
* not see these!
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
<?php
/**
* Notification exception.
- * @author Curverider Ltd
*/
class NotificationException extends Exception {}
* Open Data Definition (ODD) superclass.
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
*/
abstract class ODD {
/**
/**
* @class ODDDocument ODD Document container.
* This class is used during import and export to construct.
- * @author Curverider Ltd
*/
class ODDDocument implements Iterator {
/**
* ODD Entity class.
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
*/
class ODDEntity extends ODD {
function __construct($uuid, $class, $subclass = "") {
* ODD Metadata class.
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
*/
class ODDMetaData extends ODD {
function __construct($uuid, $entity_uuid, $name, $value, $type = "", $owner_uuid = "") {
* ODD Relationship class.
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
*/
class ODDRelationship extends ODD {
function __construct($uuid1, $type, $uuid2) {
/**
* @class OrderQueryComponent
* Order the query results.
- * @author Curverider Ltd
* @see Query
*/
class OrderQueryComponent extends QueryComponent
* get_data($query);
* </blockquote>
*
- * @author Curverider Ltd
*/
class Query
{
/**
* @class QueryComponent Query component superclass.
* Component of a query.
- * @author Curverider Ltd
* @see Query
*/
abstract class QueryComponent
/**
* @class QueryTypeQueryComponent
* What type of query is this?
- * @author Curverider Ltd
* @see Query
*/
abstract class QueryTypeQueryComponent extends QueryComponent
* RegistrationException
* Could not register a new user for whatever reason.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
* SecurityException
* An Security Exception, throw when a Security Exception occurs. Subclass for specific Security Execeptions (access problems etc)
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
/**
* @class SelectFieldQueryComponent Class representing a select field.
* This class represents a select field component.
- * @author Curverider Ltd
* @see Query
*/
class SelectFieldQueryComponent extends QueryComponent
/**
* @class SelectQueryTypeQueryComponent
* A select query.
- * @author Curverider Ltd
* @see Query
*/
class SelectQueryTypeQueryComponent extends QueryTypeQueryComponent
/**
* @class SetQueryComponent Set query.
* Represents an update set query.
- * @author Curverider Ltd
* @see Query
*/
class SetQueryComponent extends QueryComponent
* The constructor for this class sets a number of defaults, for example sets default access controls
* and a limit and offset - to change this then set it manually.
*
- * @author Curverider Ltd
* @see Query
*/
class SimpleQuery extends Query
* SuccessResult
* Generic success result class, extend if you want to do something special.
*
- * @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Core
*/
/**
* @class TableQueryComponent
* List of tables to select from or insert into.
- * @author Curverider Ltd
* @see Query
*/
class TableQueryComponent extends QueryComponent
/**
* @class UpdateQueryTypeQueryComponent
* An update query.
- * @author Curverider Ltd
* @see Query
*/
class UpdateQueryTypeQueryComponent extends QueryTypeQueryComponent
/**
* @class WhereQueryComponent
* A component of a where query.
- * @author Curverider Ltd
* @see Query
*/
class WhereQueryComponent extends QueryComponent
/**
* @class WhereSetQueryComponent
* A where query that may contain other where queries (in brackets).
- * @author Curverider Ltd
* @see Query
*/
class WhereSetQueryComponent extends WhereQueryComponent
/**
* @class WhereStaticQueryComponent
* A component of a where query where there is no right hand table, rather a static value.
- * @author Curverider Ltd
* @see Query
*/
class WhereStaticQueryComponent extends WhereQueryComponent
/**
* @class XMLRPCArrayParameter An array containing other XMLRPCParameter objects.
- * @author Curverider Ltd
*/
class XMLRPCArrayParameter extends XMLRPCParameter
{
<?php
/**
* @class XMLRPCBase64Parameter A base 64 encoded blob of binary.
- * @author Curverider Ltd
*/
class XMLRPCBase64Parameter extends XMLRPCParameter
{
<?php
/**
* @class XMLRPCBoolParameter A boolean.
- * @author Curverider Ltd
*/
class XMLRPCBoolParameter extends XMLRPCParameter
{
/**
* @class XMLRPCCall
* This class represents
- * @author Curverider Ltd
*/
class XMLRPCCall
{
<?php
/**
* @class XMLRPCDateParameter An ISO8601 data and time.
- * @author Curverider Ltd
*/
class XMLRPCDateParameter extends XMLRPCParameter
{
<?php
/**
* @class XMLRPCDoubleParameter A double precision signed floating point number.
- * @author Curverider Ltd
*/
class XMLRPCDoubleParameter extends XMLRPCParameter
{
/**
* @class XMLRPCErrorResponse
- * @author Curverider Ltd
*/
class XMLRPCErrorResponse extends XMLRPCResponse
{
<?php
/**
* @class XMLRPCIntParameter An Integer.
- * @author Curverider Ltd
*/
class XMLRPCIntParameter extends XMLRPCParameter
{
<?php
/**
* @class XMLRPCParameter Superclass for all RPC parameters.
- * @author Curverider Ltd
*/
abstract class XMLRPCParameter
{
/**
* @class XMLRPCResponse XML-RPC Response.
- * @author Curverider Ltd
*/
abstract class XMLRPCResponse
{
<?php
/**
* @class XMLRPCStringParameter A string.
- * @author Curverider Ltd
*/
class XMLRPCStringParameter extends XMLRPCParameter
{
/**
* @class XMLRPCStructParameter A structure containing other XMLRPCParameter objects.
- * @author Curverider Ltd
*/
class XMLRPCStructParameter extends XMLRPCParameter
{
<?php
/**
* @class XMLRPCSuccessResponse
- * @author Curverider Ltd
*/
class XMLRPCSuccessResponse extends XMLRPCResponse
{
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
// Primary Services API Server functions /////////////////////////////////////////////////////////////////////
*
* @package Elgg
* @subpackage API
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
* @todo deprecate this file?
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage API
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage API
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/** Cache metastrings for a page */
* @package Elgg
* @subpackage API
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/** Notification handlers */
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
* @version 0.4
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$_PAM_HANDLERS = array();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/// Cache enabled plugins per page
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/** Elgg magic session */
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/// Map a username to a cached GUID
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Helper functions ///////////////////////////////////////////////////////////////////////
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
* Elgg Test Entity Getter Functions
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreEntityGetterFunctionsTest extends ElggCoreUnitTest {
/**
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreHelpersTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreEntityTest extends ElggCoreUnitTest {
/**
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreFilestoreTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreMetadataTest extends ElggCoreUnitTest {
protected $metastrings;
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreObjectTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreSiteTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreUserTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreRegressionBugsTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreServicesApiTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Test
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
class ElggCoreSkeletonTest extends ElggCoreUnitTest {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
// check for PHP 4 before we do anything else
*
* @package Elgg
* @subpackage Installer
- * @author Cash Costello and Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package ElggLanguage
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$english = array(
* Action called by AJAX periodic auto saving when editing.
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$guid = get_input('guid');
* Delete blog entity
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$blog_guid = get_input('guid');
* Save blog entity
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// start a new sticky form session in case of failure
* Blog helper functions
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
* Blogs
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*
* @todo
* Either drop support for "publish date" or duplicate more entity getter
* Blog CSS
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
.blogpost {
* Edit blog form
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// input names => defaults
* Blog sidebar menu for editing / creating a blog post.
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
//If editing a post, show the previous revisions and drafts.
* Blog sidebar menu.
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// a few cases to consider:
* Blog sidebar menu showing revisions
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
//If editing a post, show the previous revisions and drafts.
* View for blog objects
*
* @package Blog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$full = (isset($vars['full'])) ? $vars['full'] : FALSE;
* Elgg bookmarks add/save action
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
gatekeeper();
* Elgg bookmarks delete action
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$guid = get_input('bookmark_guid',0);
* Elgg bookmarks plugin bookmarklet page
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Start engine
* Elgg Bookmarks plugin
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Bookmarks initialisation function
* Elgg get bookmarks bookmarklet view
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$page_owner = page_owner_entity();
* Elgg bookmarks CSS
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Elgg bookmarks plugin form
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
if(isset($vars['entity'])){
* Elgg bookmark view
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$owner = $vars['entity']->getOwnerEntity();
* Elgg bookmark widget edit view
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Elgg bookmark widget view
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
//get the num of shares the user want to display
* Elgg bookmark rss view
*
* @package ElggBookmarks
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$title = $vars['entity']->title;
if (empty($title)) {
* Elgg captcha plugin graphics file generator
*
* @package ElggCaptcha
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg diagnostics language pack.
*
* @package ElggDiagnostics
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$english = array(
* Elgg captcha plugin
*
* @package captcha
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
function captcha_init() {
* Elgg Captcha CSS
*
* @package captcha
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
\ No newline at end of file
* Elgg captcha plugin captcha hook view override.
*
* @package ElggCaptcha
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Generate a token which is then passed into the captcha algorithm for verification
* Elgg categories plugin category saver
*
* @package ElggCategories
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$categories = get_input('categories');
* Elgg categories listing page
*
* @package ElggCategories
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg categories plugin
*
* @package ElggCategories
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg categories plugin
*
* @package ElggCategories
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
if (isset($vars['entity']) && $vars['entity'] instanceof ElggEntity) {
* Categories CSS extender
*
* @package Categories
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg categories plugin settings page
*
* @package ElggCategories
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Get site and categories
* where possible.
*
* @package ElggCronTrigger
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
/**
* Elgg default_widgets plugin.
*
* @package DefaultWidgets
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU
- * @author Milan Magudia & Curverider
- * @copyright HedgeHogs.net & Curverider Ltd
*
**/
* Elgg default_widgets plugin.
*
* @package DefaultWidgets
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU
- * @author Milan Magudia & Curverider
- * @copyright HedgeHogs.net & Curverider ltd
*
* Code based on the work of:
- * @author Jade Dominguez, Chad Sowald
- * @copyright tastyseed, 2008
- * @copyright Chad Sowald, 2008
* @link http://www.tastyseed.com
* @link http://www.chadsowald.com
- * @author Diego Ramirez
* @links http://www.somosmas.org
*
*/
* Elgg default_widgets plugin.
*
* @package DefaultWidgets
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU
- * @author Milan Magudia & Curverider
- * @copyright HedgeHogs.net & Curverider Ltd
*
**/
* Elgg default_widgets plugin.
*
* @package DefaultWidgets
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU
- * @author Milan Magudia & Curverider
- * @copyright HedgeHogs.net & Curverider Ltd
*
**/
*
* @package Elgg
* @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
*
* Edited version of the widget editor to be used to set default widgets
- * @author Milan Magudia & Curverider
- * @copyright HedgeHogs.net & Curverider Ltd
*
**/
* Elgg diagnostics
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
admin_gatekeeper();
* Elgg diagnostics
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg diagnostics language pack.
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$english = array(
* Elgg diagnostics
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
/**
* Elgg diagnostics
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$form_body = elgg_view('input/submit', array('value' => elgg_echo('diagnostics:download')));
* Elgg diagnostics - unit tester
*
* @package ElggDiagnostics
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$form_body .= elgg_view('input/submit', array('internalname' => 'execute', 'value' => elgg_echo('diagnostics:test:executeall')));
* Saves granular access
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$whitelist = get_input('whitelist', array());
* Helper functions for ECML.
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
/**
* Language definitions for ECML
*
* @package ecml
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$english = array(
* Provides the ECML service to plugins.
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*
* @todo
* Granular access to keywords based upon view.
* Lists available keywords
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$keywords = $vars['config']->ecml_keywords;
* Displays an ECML icon on ECML-enabled forms
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$docs_href = "{$vars['url']}pg/ecml";
* ECML Blip.tv support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$params = str_replace('?', '', $vars['ecml_params_string']);
* ECML Daily Motion support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$base_url = 'http://www.dailymotion.com/video/';
* ECML Generic Object GUID
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$guid = $vars['guid'];
* ECML Google Maps support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$src = (isset($vars['src'])) ? $vars['src'] : FALSE;
* ECML Live Video support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$base_url = 'http://www.livevideo.com/video/';
* ECML Red Lasso support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$vid = (isset($vars['id'])) ? $vars['id'] : FALSE;
* ECML Slideshare support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// this wants the "wordpress.com" embed code.
* Lists users
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$only_with_avatars = (isset($vars['only_with_avatars'])) ? $vars['only_with_avatars'] : TRUE;
* ECML vimeo support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$src = (isset($vars['src'])) ? $vars['src'] : FALSE;
* ECML Youtube support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$src = (isset($vars['src'])) ? $vars['src'] : FALSE;
* Configs granular access
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$views = $vars['config']->ecml_parse_views;
* Elgg media embed plugin
*
* @package ElggEmbed
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg embed CSS - standard across all themes
*
* @package embed
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Elgg file delete
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$guid = (int) get_input('file');
* Elgg file browser download action.
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Get the guid
* Elgg file browser save action
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg file browser uploader/edit action
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg file download.
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg file saver
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg file browser
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg file browser
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*
* TODO: File icons, download & mime types
* Elgg file plugin language pack
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$english = array(
* Elgg file search
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg file browser
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg file thumbnail
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Get engine
* Elgg file browser uploader
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* File CSS extender
*
* @package Elgg File Repository
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
.files .entity_listing .entity_listing_info {
* Optionally you can specify a size.
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg file browser uploader
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* File renderer.
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
*
* @package ElggFile
* @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$title = $vars['entity']->title;
* Elgg file browser
*
* @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010 - 2009
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* This plugin allows users to put a list of their friends on their profile
*
* @package ElggFriends
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
function friends_init() {
*
* @package ElggFriends
* @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$selections = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 20, 30, 50, 100);
*
* @package ElggFriends
* @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
* Elgg garbage collector language pack.
*
* @package ElggGarbageCollector
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$english = array(
* Elgg garbage collector.
*
* @package ElggGarbageCollector
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
/**
* Add a user to a group
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Elgg groups plugin edit action.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Join a group action.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Elgg groups plugin add topic action.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Make sure we're logged in; forward to the front page if not
* Elgg Groups: delete topic action
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$group_entity = get_entity(get_input('group'));
* Delete an invitation to join a closed group.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Delete a user request to join a closed group.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Invite a user to join a group
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Join a group action.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* User requests to join a closed group.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Leave a group action.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Icon display
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Full group profile
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$group_guid = get_input('group_guid');
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Manage group invitation requests.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Invite users to groups
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg groups plugin language pack
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$english = array(
* Elgg groups 'member of' page
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Manage group invite requests.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
gatekeeper();
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg Groups topic posts page
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load Elgg engine
* Elgg Groups topic edit/add page
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['object'] Optionally, the topic to edit
*/
* Elgg Groups topic edit/add page
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] Optionally, the topic to edit
*/
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// new groups default to open membership
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$group = $vars['entity'];
* Elgg Topic individual post view.\r
* \r
* @package ElggGroups\r
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2\r
- * @author Curverider Ltd <info@elgg.com>\r
- * @copyright Curverider Ltd 2008-2010\r
- * @link http://elgg.com/\r
* \r
* @uses $vars['entity'] The post\r
*/\r
* Elgg groups profile display
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
if ($vars['full']) {
* Groups latest activity
*
* @package Groups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
<span class="group_widget_link"><a href="<?php echo $vars['url'] . "pg/groups/activity/" . page_owner(); ?>"><?php echo elgg_echo('link:view:all')?></a></span>
* Elgg groups plugin full profile view (for a closed group you haven't joined).
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg Groups css
*
* @package groups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg user display (small)
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
*/
* Elgg groups plugin full profile view.
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg group icon
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
* @uses $vars['size'] The size - small, medium or large. If none specified, medium is assumed.
* This is the messageboard, members, pages and latest forums posts. Each plugin will extend the views
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
//var_export($vars['entity']);
* Elgg groups - group homepage (profile) - provide an area for tools to extend with their latest content.
*
* @package ElggGroups
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
// tools widget area
* Elgg Groups latest discussion listing
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
*/
//get the required variables
* Edit the widget
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
<p>
* View the widget
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$group_guid = get_input('group_guid');
* Edit the widget
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
<p>
* View the widget
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$group_guid = get_input('group_guid');
* Elgg groups plugin
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// If there are any topics to view, view them
* Elgg groups plugin display topic posts
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
//display follow up comments
* This is the messageboard, members, pages and latest forums posts. Each plugin will extend the views
*
* @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
//right column
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$title = $vars['entity']->title;
* Elgg htmLawed tag filtering.
*
* @package ElgghtmLawed
- * @author Curverider Ltd
- * @author Brett Profitt
- * @link http://elgg.com/
*/
/**
* Elgg invite friends action
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
$emails = get_input('emails');
* Elgg invite page
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php');
* Elgg invite language file
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
$english = array(
* Elgg invite friends
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
/**
* Elgg invite form wrapper
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
echo elgg_view('input/form', array(
* Elgg invite form contents
*
* @package ElggInviteFriends
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @link http://elgg.org/
*/
if ($CONFIG->allow_registration) {
* Elgg log browser plugin language pack
*
* @package ElggLogBrowser
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$english = array(
* Elgg log browser.
*
* @package ElggLogBrowser
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
/**
* Elgg log browser.
*
* @package ElggLogBrowser
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$limit = get_input('limit', 40);
* Elgg logbrowser CSS
*
* @package logbrowser
- * @author Curverider <info@elgg.com>
- * @link http://elgg.org/
*/
?>
*
* @package ElggLogBrowser
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$entry = $vars['entity']->entry;
* Elgg log rotator language pack.
*
* @package ElggLogRotate
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
$english = array(
* Elgg log rotator.
*
* @package ElggLogRotate
- * @author Curverider Ltd
- * @link http://elgg.com/
*/
/**
* Elgg members index page
*
* @package ElggMembers
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg members language
*
* @package ElggMembers
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$english = array(
* Elgg members plugin
*
* @package Elggmembers
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
function members_init() {
* Elgg Members Css
*
* @package Members
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
.members .group_count {
* Elgg Members search
*
* @package Members
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
<div class="sidebar_container">
* Elgg Message board: add message action
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Get input
* Elgg Message board: delete message action
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we can get the comment in question
* Elgg message board widget ajax logic page
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010 - 2009
- * @link http://elgg.com/
*/
// Load Elgg engine will not include plugins
* Elgg Message board history page
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg Message board index page
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* to post comments.
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg Messageboard CSS extender
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg Message board add form
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg Message board display page
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg Message board individual item display view
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg message board widget edit view
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// default value
*
*
* @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
//get the full page owner entity
* the same message, messages don't actually delete, they are just removed from view for the user who deletes
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
// Need to be logged in to do this
* Elgg send a message action page
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
// Make sure we're logged in (send us to the front page if not)
* Elgg messages inbox page
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg send a message action page
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
$english = array(
* Elgg read a message page
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
// Load Elgg engine
* Elgg send a message page
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
// Load Elgg engine
* Elgg sent messages page
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* This plugin lets user send each other messages.
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
/**
* Elgg Messages CSS
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg send a message view
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
* @uses $vars['friends'] This is an array of a user's friends and is used to populate the list of
* people the user can message
*
* View message
*
* @package ElggMessages
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
$body = elgg_view("messages/view",$vars);
* Elgg hoverover extender for messages
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// login check already performed in profile/icon
* Elgg messages individual view
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*
* @uses $vars['entity'] Optionally, the message to view
* Elgg messages topbar extender
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
gatekeeper();
* Elgg messages view page
*
* @package ElggMessages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] An array of messages to view
* @uses $vars['page_view'] This is the page the messages are being accessed from; inbox or sentbox
* Elgg notifications group save
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load important global vars
* Elgg notifications
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$user = get_loggedin_user();
* Elgg notifications plugin group index
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load Elgg framework
* Elgg notifications plugin index
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load Elgg framework
* Elgg notifications plugin
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg notifications CSS
*
* @package notifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Elgg SMS Client
*
* @package ElggSMS
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg notifications groups subscription form
*
* @package ElggNotifications
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $NOTIFICATION_HANDLERS;
*
* @package ElggPages
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load configuration
* Elgg Pages
*
* @package ElggPages
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg pages widget edit
*
* @package ElggPages
- * @link http://elgg.com/
*/
$num_display = (int) $vars['entity']->pages_num;
* Elgg profile plugin upload new user icon action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
gatekeeper();
* Elgg profile plugin edit default profile action removal
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg profile plugin edit action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg profile plugin edit default profile action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg profile plugin edit default profile action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
admin_gatekeeper();
* Elgg profile plugin upload new user icon action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
gatekeeper();
* Elgg profile plugin reorder fields
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
admin_gatekeeper();
* Elgg profile plugin edit default profile action
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
global $CONFIG;
* Elgg profile editor
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Get the Elgg engine
* Elgg upload new profile icon
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load the Elgg framework
* Elgg profile icon
*
* @package ElggProfile
-* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-* @author Curverider Ltd <info@elgg.com>
-* @copyright Curverider Ltd 2008-2010
-* @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg profile icon cache/bypass
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
* Elgg profile index
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
* Elgg profile JS
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Get engine
* Elgg profile index
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg profile plugin
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg profile - Admin area: edit default profile fields
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$title = elgg_view_title(elgg_echo('profile:edit:default'));
* Elgg Profile
*
* @package Profile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
/* ***************************************
* Elgg profile edit form
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
* @uses $vars['profile'] Profile items from $CONFIG->profile, defined in profile/start.php for now
* Elgg profile index
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$label_text = elgg_echo('profile:label');
* Elgg profile icon edit form
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
* @uses $vars['profile'] Profile items from $CONFIG->profile, defined in profile/start.php for now
* Elgg profile icon hover over
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
*/
* Elgg profile icon
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
* @uses $vars['size'] The size - small, medium or large. If none specified, medium is assumed.
* Elgg profile image Javascript
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
*/
* Elgg user display (small)
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
*/
* Profile admin context links
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity
*/
* Elgg profile icon avatar menu: Add / Remove friend links
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
*/
* Elgg profile icon avatar menu: view for plugins to extend
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
*/
* Adds metatags to load Javascript required for the profile
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*/
* Elgg profile icon edit form
*
* @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
<div id="profile_sidebar">
* Elgg report action
*
* @package ElggReportContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$title = get_input('title');
* Elgg reported content: archive action
*
* @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we're logged in and are admin
* Elgg reported content: delete action
*
* @package ElggReportedCOntent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we're logged in and are admin
* Elgg reported content send report page
*
* @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Start engine
* Elgg reported content plugin language pack
*
* @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$english = array(
* Elgg Reported content.
*
* @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg Reported content
*
* @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
$title = elgg_view_title(elgg_echo('reportedcontent'));
* Elgg reported content CSS
*
* @package reportedcontent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Elgg report this link
*
* @package ElggReportContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$title = elgg_echo('reportedcontent:this:title');
* Elgg report content plugin form
*
* @package ElggReportContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$guid = 0;
* Elgg report content listing
*
* @package ElggReportContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
if($vars['entity']){
* Elgg site message: add
*
* @package ElggSiteMessage
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
// Make sure we're logged in and are admin (send us to the front page if not)
* Elgg site message: delete
*
* @package ElggBlog
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
* Wraps all river items.\r
*\r
* @package Elgg\r
- * @author Curverider\r
- * @link http://elgg.com/\r
*/\r
?>\r
<div class="river_item riverdashboard">\r
* ECML activity support
*
* @package ECML
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// $vars['user'] is apparently the loggedin user.
* Elgg thewire view page
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
// Search supports RSS
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
* Elgg Search css
*
* @package search
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
echo elgg_view_layout('one_column_with_sidebar', $vars['body']);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['results']['entities'];
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo sprintf(elgg_echo("tag:search:startblurb"), $vars['query']);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
if (!array_key_exists('entity', $vars) || !($vars['entity'] instanceof ElggEntity)) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
- * @link http://elgg.org/
*/
$entities = $vars['results']['entities'];
* Language definitions for Site Pages
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$english = array(
* Helper functions for Site Pages.
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
* Formerly implemented as "external pages" and "custom index."
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*
* @todo
* Make sure this stuff doesn't show up in search.
* Settings Site Pages
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$page_type = 'front';
* This is in a view so we can parse it for keywords.
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$sitepage = sitepages_get_sitepage_object('front');
* Footer view to add links to the semi-static pages.
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
?>
* Edit non front or SEO site pages.
*
* @package Elggsitepages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*/
* Edit form for the custom front page\r
*\r
* @package SitePages\r
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2\r
- * @author Curverider Ltd\r
- * @copyright Curverider Ltd 2008-2010\r
- * @link http://elgg.org/\r
*/\r
\r
if($sitepages_object = sitepages_get_sitepage_object('frontsimple')){\r
* Edit form for the custom meta tags and desc
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
if ($sitepages_object = sitepages_get_sitepage_object('seo')) {
* Site stats
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
echo "N/A";
\ No newline at end of file
* Lists users
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$only_with_avatars = (isset($vars['only_with_avatars'])) ? $vars['only_with_avatars'] : TRUE;
* Displays the tabbed menu for editing site pages.
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$page_type = $vars['page_type'];
* Add any additional defined metatags or CSS.
*
* @package SitePages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
$meta_details = sitepages_get_sitepage_object('seo');
* Elgg thewire: add shout action
*
* @package Elggthewire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
* Elgg thewire: delete note action
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
* Elgg thewire add entry page
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*/
* Elgg view all thewire posts from all users page
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load Elgg engine
* Elgg thewire index page
*
* @package Elggthewire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
// Load Elgg engine
* The wire is simple twitter like plugin that allows users to post notes to the wire
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
/**
* Elgg Wire Posts Listings
*
* @package thewire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @question - do we want users to be able to edit thewire?
*
* Elgg thewire CSS extender
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg thewire edit/add page
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
*/
* Elgg shout not found page
*
* @package ElggShouts
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg thewire view page
*
* @package ElggTheWire
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*
* @uses $vars['entity'] An array of wire notes to view
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$owner = $vars['entity']->getOwnerEntity();
* Search entity view for RSS feeds.
*
* @package ElggTheWire
- * @link http://elgg.org/
*/
if (!array_key_exists('entity', $vars)) {
* TinyMCE wysiwyg editor
*
* @package TinyMCE
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
function tinymce_init() {
* Displays a long text input field
*
* @package ElggTinyMCE
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
* This plugin allows users to pull in their twitter feed to display on their profile
*
* @package ElggTwitter
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
function twitter_init() {
* Elgg Twitter CSS
*
* @package ElggTwitter
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg twitter edit page
*
* @package ElggTwitter
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
?>
* Elgg twitter view page
*
* @package ElggTwitter
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
*/
//some required params
* http://wpaudioplayer.com/license
* http://wpaudioplayer.com/standalone
* @package ElggZAudio
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
function zaudio_init() {
* http://wpaudioplayer.com/license
* http://wpaudioplayer.com/standalone
* @package ElggZAudio
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
?>
* http://wpaudioplayer.com/license
* http://wpaudioplayer.com/standalone
* @package ElggZAudio
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
?>
* http://wpaudioplayer.com/license
* http://wpaudioplayer.com/standalone
* @package ElggZAudio
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
**/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Ensure that only logged-in users can see this page
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
set_context('search');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// You need to be logged in for this one
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// You need to be logged in for this one
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// You need to be logged in for this one
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$owner = page_owner_entity();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$owner = page_owner_entity();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Load Elgg engine
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (!page_owner()) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Make sure only valid users can see this
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Make sure only valid admin users can see this
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Make sure only valid admin users can see this
*
* @package Elgg
* @subpackage API
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
*/
/**
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
require_once("../../engine/start.php");
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Get DB settings, connect
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Include elgg engine
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
// YYYYMMDD = Elgg Date
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$form_body = "<p>" . elgg_echo('user:password:text') . "</p>";
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$form_body = "<label>" . elgg_echo('loginusername') . "<br />" . elgg_view('input/text', array('internalname' => 'username', 'class' => 'login_textarea')) . "</label>";
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$username = get_input('u');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$admin_option = false;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$menu_items = get_register('menu');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$plugin = $vars['plugin'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$plugin = $vars['plugin'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Work out number of users
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// users online
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
regenerate_plugin_list();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
regenerate_plugin_list();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$action = $vars['url'] . "action/admin/site/update_advanced";
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$action = $vars['url'] . "action/admin/site/update_basic";
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$loader = <<< END
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (isset($vars['area1'])) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
<style type="text/css">
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
<div id="elgg_content" class="clearfloat">
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
<div id="elgg_content" class="clearfloat sidebar">
* Elgg comments add form
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
* Elgg comments add form
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
* View a list of entities
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses string $vars['icon'] Full icon HTML to display.
* @uses string $vars['info'] Info about the entity.
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses string $vars['icon'] Full icon HTML to display.
* @uses string $vars['info'] Info about the entity.
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$m = $vars['metadata'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$r = $vars['relationship'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @see collections.php
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['collections'] The array of friends collections
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['collections'] The array of friends collections
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (isset($vars['collection'])) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] Optionally, the collection edit
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['friends'] The array of ElggUser objects
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['entities'] The array of ElggUser objects
*/
* Elgg create new friend river item
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['entities'] The array of ElggUser objects
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['count'] The count
* @uses $vars['friendspicker'] The friendspicker counter number
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['entity'] The entity the icon represents - uses getIcon() method
* @uses $vars['js'] Any JavaScript to add to img tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo elgg_view('object/default', $vars);
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
* @deprecated 1.7
*/
elgg_deprecated_notice('view groups/search/finishblurb was deprecated.', 1.7);
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
* @deprecated 1.7
*/
elgg_deprecated_notice('view groups/search/startblurb was deprecated.', 1.7);
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @todo This currently only works for ONE AUTOCOMPLETE TEXT FIELD on a page.
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses string $vars['internalname'] The name of the input fields (Forced to an array by appending [])
* @uses array $vars['options'] An array of strings representing the label => option for the each checkbox field
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['js'] Any Javascript to enter into the input tag
* @uses $vars['internalname'] The name of the input field
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['body'] The body of the form (made up of other input/xxx views and html
* @uses $vars['method'] Method (default POST)
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any - will be html encoded
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$ts = time();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any - string or array - tags will be encoded
* @uses $vars['js'] Any Javascript to enter into the input tag
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['internalname'] The name of the input field
* Elgg likes - display users liked link/text
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
* Elgg likes add form
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
* Elgg likes link form - used on riverdashboard where we want the likes link separate from the list of users that liked the object
*
* @package Elgg
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.com/
*
* @uses $vars['entity']
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An error message (string)
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An array of error messages
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] The array of message registers
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An array of system messages
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] A system message (string)
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses optional $vars['breadcrumbs'] = array('title' => 'The title', 'link' => 'url')
* @see elgg_push_breadcrumb
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses int $vars['offset']
* @uses int $vars['limit']
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
* @uses $vars['items']
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$group = (isset($vars['group'])) ? $vars['group'] : 'default';
* @uses $vars['children_html']
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$group = (isset($vars['group'])) ? $vars['group'] : 'default';
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$baseurl = elgg_http_remove_url_query_element($vars['baseurl'], 'search_viewtype');
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $NOTIFICATION_HANDLERS;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if ($vars['full']) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo elgg_view('widgets/wrapper',$vars);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['text'] The text to display
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['text'] The text of the link
* @uses $vars['href'] The address
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] A UNIX epoch timestamp
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The email address to display
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] Source of the page
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The text to display
* @uses $vars['parse_urls'] Whether to turn urls into links. Default is true.
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['text'] The text to display
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['text'] The text to display
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['tagcloud'] An array of stdClass objects with two elements: 'tag' (the text of the tag) and 'total' (the number of elements with this tag)
* @uses $vars['value'] Sames as tagcloud
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['tags'] The tags to display
* @uses $vars['tagtype'] The tagtype, optionally
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['text'] The text to display
*
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses string $vars['href'] The URL.
* @uses string $vars['text'] The string between the <a></a> tags.
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
$page_owner = page_owner_entity();
*\r
* @package Elgg\r
* @subpackage Core\r
- * @author Curverider Ltd\r
- * @link http://elgg.org/\r
*\r
*/\r
\r
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*\r
* @package Elgg\r
* @subpackage Core\r
- * @author Curverider Ltd\r
- * @link http://elgg.org/\r
*\r
* @uses $vars['config'] The site configuration settings, imported\r
* @uses $vars['title'] The page title\r
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['config'] The site configuration settings, imported
* @uses $vars['title'] The page title
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
?>
* Wraps all river items.
*
* @package Elgg
- * @author Curverider
- * @link http://elgg.com/
*/
//get the site admins choice avatars or action icons
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['action'] If set, the place to forward the form to (usually action/systemsettings/save)
*/
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// sites information (including plugin settings) shouldn't be shown.
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['action'] If set, the place to forward the form to (usually action/systemsettings/save)
*/
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
if ($vars['full']) {
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
* @deprecated 1.7
*/
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
* @deprecated 1.7
- * @link http://elgg.org/
*/
elgg_deprecated_notice('view user/search/startblurb was deprecated.', 1.7);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if ($vars['config']->allow_user_default_access) {
$user = page_owner_entity();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$user = page_owner_entity();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$user = page_owner_entity();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$user = page_owner_entity();
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$form_body = elgg_view("usersettings/user");
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Description of what's going on
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
<div class="menu_admin_option">
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
<div class="menu_admin_option">
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Description of what's going on
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Get entity statistics
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$user = get_loggedin_user();
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$guid = $vars['entity']->getGUID();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
static $widgettypes;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['title'] The page title
* @uses $vars['body'] The main content of the page
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo $vars['body'];
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
if (is_array($entities) && sizeof($entities) > 0) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$friends=get_user_friends($vars['page_owner'],$subtype = "",$limit = 10000,$offset = 0);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['body'] The body of the form (made up of other input/xxx views and html
* @uses $vars['method'] Method (default POST)
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$ts = time();
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An error message (string)
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An array of error messages
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] The array of message registers
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An array of system messages
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] A system message (string)
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['title'] The page title
* @uses $vars['body'] The main content of the page
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (isset($vars['entity'])) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$body = $vars['body'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (isset($vars['entity'])) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$m = $vars['metadata'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$r = $vars['relationship'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo $vars['body'];
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $jsonexport;
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$m = $vars['metadata'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$r = $vars['relationship'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$serialised = exportAsArray($vars['entity']->guid);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$serialised = exportAsArray($vars['entity']->guid);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
if (is_array($entities) && sizeof($entities) > 0) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$serialised = exportAsArray($vars['entity']->guid);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$serialised = exportAsArray($vars['entity']->guid);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = $vars['entity'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$m = $vars['metadata'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$r = $vars['relationship'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo elgg_view('export/entity', $vars);
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entity = get_entity($vars['annotation']->entity_guid);
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
for ($i = 1; $i < 8; $i++) {
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$title = $vars['entity']->title;
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
echo $vars['body'];
\ No newline at end of file
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*
*/
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
if (isset($vars['items']) && is_array($vars['items']) && !empty($vars['items'])) {
/**
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$entities = $vars['entities'];
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
?>
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
* @uses $vars['object'] An exception
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*
*/
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$result = $vars['result'];